123/myapp/craft
2023-08-08 22:04:06 +00:00

11 lines
354 B
Python

#!/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()