mirror of
https://github.com/sissbruecker/linkding
synced 2024-11-10 06:04:15 +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 *
|