This commit is contained in:
Théophile Bastian 2017-09-23 21:40:45 +02:00
parent acb4430c02
commit 481775a040
8 changed files with 24 additions and 0 deletions

0
api/__init__.py Normal file
View file

3
api/admin.py Normal file
View file

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

5
api/apps.py Normal file
View file

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

View file

3
api/models.py Normal file
View file

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

3
api/tests.py Normal file
View file

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

7
api/urls.py Normal file
View file

@ -0,0 +1,7 @@
from django.conf.urls import url
from . import views
app_name = 'manisite'
urlpatterns = [
]

3
api/views.py Normal file
View file

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