mirror of
https://github.com/minetest/contentdb.git
synced 2024-11-10 09:33:44 +01:00
6 lines
112 B
Python
6 lines
112 B
Python
from flask import Blueprint
|
|
|
|
bp = Blueprint("users", __name__)
|
|
|
|
from . import profile, claim, account, settings
|