Created app 'api'

This commit is contained in:
benjamyn 2020-10-17 21:31:04 -04:00
parent 6a36f400be
commit b64aa3e5e7
7 changed files with 17 additions and 0 deletions

View File

3
migratorapi/api/admin.py Normal file
View File

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

5
migratorapi/api/apps.py Normal file
View File

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

View File

View File

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

3
migratorapi/api/tests.py Normal file
View File

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

3
migratorapi/api/views.py Normal file
View File

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