mirror of
https://github.com/sissbruecker/linkding
synced 2024-11-22 19:33:05 +00:00
5 lines
135 B
Python
5 lines
135 B
Python
# Use dev settings as default, use production if dev settings do not exist
|
|
try:
|
|
from .dev import *
|
|
except:
|
|
from .prod import *
|