basic script and web stub

This commit is contained in:
Mariano Ramon
2020-04-07 06:33:19 -03:00
commit 2f72244972
5 changed files with 93 additions and 0 deletions

7
dmapp/dmweb/dm.py Normal file
View File

@@ -0,0 +1,7 @@
from flask import Blueprint
dmbp = Blueprint("deskmeter", __name__, url_prefix="/")
@dmbp.route("/")
def index():
return "Hello, World!"