I tried to create a new logic directory under the Python Function directory generated by CIL to place some logic, but I can't seem to reference it?
So currently Function can only be run as a single file, right? Or maybe I missed something
Summary
Solution: The issue of the function only supporting a single Python file has been solved. One possible solution is to use the following code:
```py
import os
folder = os.path.dirname(os.path.realpath(__file__))
file = os.path.join(folder, 'templates.txt')
open(file, 'r')
```
Additionally, it is suggested to import and export functions using specific syntax provided in the links:
Import: https://github.com/open-runtimes/examples/blob/main/python/send_message/main.py#L1
Export: https://github.com/open-runtimes/examples/blob/main/python/send_message/functions/send_sms_twilio.py#