12 lines
214 B
Python
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')
|