1
0
Fork 0
mirror of https://github.com/seanmorley15/AdventureLog.git synced 2025-07-20 13:29:37 +02:00
AdventureLog/backend/server/adventures/apps.py

6 lines
183 B
Python
Raw Normal View History

2024-07-08 11:44:39 -04:00
from django.apps import AppConfig
2024-08-21 09:48:47 -04:00
from django.conf import settings
2024-07-08 11:44:39 -04:00
class AdventuresConfig(AppConfig):
2024-08-21 09:48:47 -04:00
default_auto_field = 'django.db.models.BigAutoField'
2024-08-21 18:56:51 -04:00
name = 'adventures'