e8063b1de7
Integrated helper classes and configuration Create login "area"
10 lines
248 B
Python
10 lines
248 B
Python
from flask import Blueprint
|
|
|
|
api_v1 = Blueprint("api_v1", __name__, url_prefix="/api/v1")
|
|
web = Blueprint("web", __name__, url_prefix="/web")
|
|
|
|
|
|
@api_v1.route("/")
|
|
@api_v1.route("/health")
|
|
def api_index():
|
|
return "Open App Stack API v1.0"
|