10 lines
151 B
Python
10 lines
151 B
Python
|
from flask import Blueprint
|
||
|
|
||
|
accounts = Blueprint('accounts', __name__)
|
||
|
|
||
|
|
||
|
# Routes
|
||
|
@accounts.route("/")
|
||
|
def hello():
|
||
|
return "Hello from accounts!"
|