1
Fork 0
mirror of https://github.com/Steffo99/sophon.git synced 2024-12-21 22:34:21 +00:00

Create first "core" app

This commit is contained in:
Steffo 2021-04-05 01:07:49 +02:00
parent c92d090371
commit 99080ee927
7 changed files with 17 additions and 0 deletions

0
sophon/core/__init__.py Normal file
View file

3
sophon/core/admin.py Normal file
View file

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

5
sophon/core/apps.py Normal file
View file

@ -0,0 +1,5 @@
from django.apps import AppConfig
class CoreConfig(AppConfig):
name = 'core'

View file

3
sophon/core/models.py Normal file
View file

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

3
sophon/core/tests.py Normal file
View file

@ -0,0 +1,3 @@
from django.test import TestCase
# Create your tests here.

3
sophon/core/views.py Normal file
View file

@ -0,0 +1,3 @@
from django.shortcuts import render
# Create your views here.