Files
parts_website/run.py
2024-04-17 15:07:51 +01:00

16 lines
273 B
Python

"""
Project: PARTS Website
Author: Edward Middleton-Smith
Precision And Research Technology Systems Limited
Technology: Backend
Feature: Launcher
Description:
Runs project.
"""
from app import app
if __name__ == '__main__':
app.run(debug=True)