7 lines
139 B
Python
7 lines
139 B
Python
|
import os
|
||
|
IS_LOCAL_DEV = bool(os.environ.get("TELESCOOP_DEV"))
|
||
|
if IS_LOCAL_DEV:
|
||
|
from .dev import *
|
||
|
else:
|
||
|
from .production import *
|