Add initial configuration and structure for the Twitch app, including models, views, and admin registration
This commit is contained in:
parent
31addca6de
commit
0c7c1c3f30
12 changed files with 76 additions and 83 deletions
10
twitch/apps.py
Normal file
10
twitch/apps.py
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
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"
|
||||
Loading…
Add table
Add a link
Reference in a new issue