2025-04-14 08:34:30 +00:00
|
|
|
|
# import django´s base AppConfig class
|
2020-12-23 10:42:57 +00:00
|
|
|
|
from django.apps import AppConfig
|
|
|
|
|
|
2025-04-14 08:34:30 +00:00
|
|
|
|
# define the configuration class for the 'evapp' application
|
2020-12-23 10:42:57 +00:00
|
|
|
|
class EvappConfig(AppConfig):
|
2025-04-14 08:34:30 +00:00
|
|
|
|
# give the app a name
|
2020-12-23 10:42:57 +00:00
|
|
|
|
name = 'evapp'
|