8 lines
198 B
Python
8 lines
198 B
Python
|
|
from django.apps import AppConfig
|
||
|
|
|
||
|
|
|
||
|
|
class CropSimulationConfig(AppConfig):
|
||
|
|
default_auto_field = "django.db.models.BigAutoField"
|
||
|
|
name = "crop_simulation"
|
||
|
|
verbose_name = "Crop Simulation"
|