mirror of
https://github.com/minetest/contentdb.git
synced 2024-11-14 03:23:46 +01:00
6 lines
99 B
Python
6 lines
99 B
Python
|
from flask import Blueprint
|
||
|
|
||
|
bp = Blueprint("users", __name__)
|
||
|
|
||
|
from . import githublogin, profile
|