mirror of
https://github.com/sissbruecker/linkding
synced 2024-11-13 23:27:16 +00:00
6 lines
135 B
Python
6 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 *
|