I am working through another person's implementation of file system with python fuse. I am trying to understand the flow of the program. When the code's main method is called it somehow calls the listDirectory method. Where is the code for this FUSE method defined? Where can I find documentation of what is happening? I searched the fuse.py file for this method and can't find it.
def listDirectory():
print '[*] Listing Directory'
message = str({"RequestType":4})
print "sending message " + message
return sendMessage(message)
def main(a, b):
print "\n[*] Calling main method"
FUSE(FuseHandler(a), b, foreground=True)