8 lines
195 B
Python
8 lines
195 B
Python
|
|
from django.apps import AppConfig
|
||
|
|
|
||
|
|
|
||
|
|
class PestDetectionConfig(AppConfig):
|
||
|
|
default_auto_field = "django.db.models.BigAutoField"
|
||
|
|
name = "pest_detection"
|
||
|
|
verbose_name = "Pest Detection"
|