mirror of
https://github.com/LukeHagar/pypistats.dev.git
synced 2025-12-07 20:57:44 +00:00
10 lines
188 B
Python
10 lines
188 B
Python
"""Flask extensions."""
|
|
from flask_github import GitHub
|
|
from flask_migrate import Migrate
|
|
from flask_sqlalchemy import SQLAlchemy
|
|
|
|
|
|
db = SQLAlchemy()
|
|
github = GitHub()
|
|
migrate = Migrate()
|