15 lines
161 B
Python
15 lines
161 B
Python
#!/usr/local/bin/python3
|
|
|
|
"""Main module."""
|
|
|
|
from app.app import app
|
|
|
|
|
|
def main():
|
|
"""Run the app."""
|
|
app.run()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|