17 lines
200 B
Python
17 lines
200 B
Python
|
import sys
|
||
|
|
||
|
from flask.wrappers import Response
|
||
|
|
||
|
|
||
|
def url_home() -> Response:
|
||
|
...
|
||
|
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
|
||
|
def main() -> int:
|
||
|
# Start Flask
|
||
|
return 0
|
||
|
|
||
|
sys.exit(main())
|