8 lines
184 B
Python
8 lines
184 B
Python
|
|
from django.apps import AppConfig
|
||
|
|
|
||
|
|
|
||
|
|
class WeatherConfig(AppConfig):
|
||
|
|
default_auto_field = "django.db.models.BigAutoField"
|
||
|
|
name = "weather"
|
||
|
|
verbose_name = "Weather Forecast"
|