Add init for api app

This commit is contained in:
Aroy-Art 2025-01-28 21:52:28 +01:00
parent b7cbf530ec
commit eb43daca83
Signed by: Aroy
GPG key ID: 583642324A1D2070
4 changed files with 12 additions and 0 deletions

0
backend/api/__init__.py Normal file
View file

3
backend/api/admin.py Normal file
View file

@ -0,0 +1,3 @@
from django.contrib import admin
# Register your models here.

6
backend/api/apps.py Normal file
View file

@ -0,0 +1,6 @@
from django.apps import AppConfig
class ApiConfig(AppConfig):
default_auto_field = 'django.db.models.BigAutoField'
name = 'api'

3
backend/api/models.py Normal file
View file

@ -0,0 +1,3 @@
from django.db import models
# Create your models here.