Hi, is there any way to execute a function in an other controller?
controller1.py
func():
do something
controller2.py
func():
do something else
call func() of controller1.py
do some more things
return
I don't want to redirect the user.

