did someone try module as storage for prefect flow...
# ask-community
a
did someone try module as storage for prefect flows?
k
👀 1
Do you have a specific question?
a
yeah i am going to try module as flow storage but according to doc and this code
Copy code
from prefect.storage import Module

flow = Flow("module example", storage=Module("mymodule.flows"))
i don't know where this mymodule.flows is coming from i mean where it is defined?
k
You have to create the Python module with a
setup.py
and then install the package on the execution environment (agent)
👍 1