mirror of
https://github.com/fusion44/blitz_api.git
synced 2026-08-14 12:02:46 +02:00
9 lines
260 B
Python
9 lines
260 B
Python
from decouple import config
|
|
|
|
from app.system.models import APIPlatform
|
|
|
|
router = None
|
|
|
|
_PLATFORM = config("platform", default=APIPlatform.RASPIBLITZ)
|
|
if _PLATFORM == APIPlatform.RASPIBLITZ:
|
|
from app.setup.impl.raspiblitz.router import router # noqa: F401
|