8 lines
206 B
Python
8 lines
206 B
Python
|
from django.apps import AppConfig
|
||
|
|
||
|
|
||
|
class PodcastsConfig(AppConfig):
|
||
|
default_auto_field = "django.db.models.BigAutoField"
|
||
|
name = "libretime_api.podcasts"
|
||
|
verbose_name = "LibreTime Podcasts API"
|