Add initial configuration and structure for the Twitch app, including models, views, and admin registration

This commit is contained in:
Joakim Hellsén 2025-07-08 19:05:36 +02:00
commit 0c7c1c3f30
12 changed files with 76 additions and 83 deletions

0
twitch/__init__.py Normal file
View file

1
twitch/admin.py Normal file
View file

@ -0,0 +1 @@
# Register your models here.

10
twitch/apps.py Normal file
View 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"

View file

1
twitch/models.py Normal file
View file

@ -0,0 +1 @@
# Create your models here.

1
twitch/tests.py Normal file
View file

@ -0,0 +1 @@
# Create your tests here.

1
twitch/views.py Normal file
View file

@ -0,0 +1 @@
# Create your views here.