123/myapp/craft
2025-02-01 15:57:22 +08:00

11 lines
354 B
Python
Executable file

#!/usr/bin/env python
"""Craft Command.
This module is really used for backup only if the masonite CLI cannot import this for you.
This can be used by running "python craft". This module is not ran when the CLI can
successfully import commands for you.
"""
from wsgi import application
if __name__ == "__main__":
application.make("commands").run()