123/myapp/craft

12 lines
354 B
Text
Raw Permalink Normal View History

2023-08-08 22:04:06 +00:00
#!/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()