-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathrun.py
16 lines (15 loc) · 998 Bytes
/
run.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#############################################################################
# Confidentiality Information #
# #
# This module is the confidential and proprietary information of #
# DBSentry Corp.; it is not to be copied, reproduced, or transmitted in any #
# form, by any means, in whole or in part, nor is it to be used for any #
# purpose other than that for which it is expressly provided without the #
# written permission of DBSentry Corp. #
# #
# Copyright (c) 2020-2021 DBSentry Corp. All Rights Reserved. #
# #
#############################################################################
from app import app
if __name__ == "__main__":
app.run()