rophako/rophako/modules/account.py

9 satır
161 B
Python

# -*- coding: utf-8 -*-
from flask import Blueprint
mod = Blueprint("account", __name__, url_prefix="/account")
@mod.route("/")
def index():
return "Test"