mirror of
https://github.com/LukeHagar/pypistats.dev.git
synced 2025-12-06 12:47:48 +00:00
9 lines
227 B
Python
9 lines
227 B
Python
"""Run the application."""
|
|
from pypistats.application import create_app
|
|
from pypistats.settings import DevConfig
|
|
from pypistats.settings import ProdConfig
|
|
from pypistats.settings import TestConfig
|
|
|
|
|
|
app = create_app(DevConfig)
|