10 lines
245 B
Python
10 lines
245 B
Python
from __future__ import annotations
|
|
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class TwitchConfig(AppConfig):
|
|
"""AppConfig subclass for the 'twitch' application."""
|
|
|
|
default_auto_field: str = "django.db.models.BigAutoField"
|
|
name = "twitch"
|