add restapp to client
Signed-off-by: Nico Schottelius <nico@nico-notebook.schottelius.org>
This commit is contained in:
parent
f5f5024981
commit
d53b980ebf
7 changed files with 17 additions and 0 deletions
0
ungleichotp-client/restapp/__init__.py
Normal file
0
ungleichotp-client/restapp/__init__.py
Normal file
3
ungleichotp-client/restapp/admin.py
Normal file
3
ungleichotp-client/restapp/admin.py
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
from django.contrib import admin
|
||||||
|
|
||||||
|
# Register your models here.
|
5
ungleichotp-client/restapp/apps.py
Normal file
5
ungleichotp-client/restapp/apps.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from django.apps import AppConfig
|
||||||
|
|
||||||
|
|
||||||
|
class RestappConfig(AppConfig):
|
||||||
|
name = 'restapp'
|
0
ungleichotp-client/restapp/migrations/__init__.py
Normal file
0
ungleichotp-client/restapp/migrations/__init__.py
Normal file
3
ungleichotp-client/restapp/models.py
Normal file
3
ungleichotp-client/restapp/models.py
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
from django.db import models
|
||||||
|
|
||||||
|
# Create your models here.
|
3
ungleichotp-client/restapp/tests.py
Normal file
3
ungleichotp-client/restapp/tests.py
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
from django.test import TestCase
|
||||||
|
|
||||||
|
# Create your tests here.
|
3
ungleichotp-client/restapp/views.py
Normal file
3
ungleichotp-client/restapp/views.py
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
from django.shortcuts import render
|
||||||
|
|
||||||
|
# Create your views here.
|
Loading…
Reference in a new issue