add 'explorer' app to 'franklincce' project

This commit is contained in:
stupidcomputer 2024-06-19 01:29:05 -05:00
parent c08636fcad
commit 3c73c209a7
7 changed files with 18 additions and 0 deletions

View File

View File

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

View File

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

View File

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

View File

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

View File

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