10 lines
92 B
Python
10 lines
92 B
Python
from src.app import app
|
|
|
|
|
|
def main():
|
|
app.run()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|