Private
Public Access
1
0
Files
rowsandall/rowers/apps.py
2023-06-03 21:20:02 +02:00

12 lines
214 B
Python

from django.apps import AppConfig
import os
from django.conf import settings
# Store metadata for the app
class RowersConfig(AppConfig):
name = 'rowers'
path = os.path.join(settings.BASE_DIR, 'rowers')