mirror of
https://github.com/LukeHagar/pypistats.org.git
synced 2025-12-06 04:21:09 +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()
|