there is a controller:
def controller_1():
"""
this is its __doc__ string
"""
return {}
# How can get ["controller_1", "this is its __doc__ string"]
def controller_2():
"""
this is its __doc__ string
"""
return {}
# How can get ["controller_2", "this is its __doc__ string"]
--------------------------------------
how can I get this controller's functions and their doc strings from a
model function ?
thank you !

