[django] add otpauth app
This commit is contained in:
parent
c30ea955c3
commit
bee76cde49
7 changed files with 17 additions and 0 deletions
0
ungleichotp/otpauth/__init__.py
Normal file
0
ungleichotp/otpauth/__init__.py
Normal file
3
ungleichotp/otpauth/admin.py
Normal file
3
ungleichotp/otpauth/admin.py
Normal file
|
@ -0,0 +1,3 @@
|
|||
from django.contrib import admin
|
||||
|
||||
# Register your models here.
|
5
ungleichotp/otpauth/apps.py
Normal file
5
ungleichotp/otpauth/apps.py
Normal file
|
@ -0,0 +1,5 @@
|
|||
from django.apps import AppConfig
|
||||
|
||||
|
||||
class OtpauthConfig(AppConfig):
|
||||
name = 'otpauth'
|
0
ungleichotp/otpauth/migrations/__init__.py
Normal file
0
ungleichotp/otpauth/migrations/__init__.py
Normal file
3
ungleichotp/otpauth/models.py
Normal file
3
ungleichotp/otpauth/models.py
Normal file
|
@ -0,0 +1,3 @@
|
|||
from django.db import models
|
||||
|
||||
# Create your models here.
|
3
ungleichotp/otpauth/tests.py
Normal file
3
ungleichotp/otpauth/tests.py
Normal file
|
@ -0,0 +1,3 @@
|
|||
from django.test import TestCase
|
||||
|
||||
# Create your tests here.
|
3
ungleichotp/otpauth/views.py
Normal file
3
ungleichotp/otpauth/views.py
Normal file
|
@ -0,0 +1,3 @@
|
|||
from django.shortcuts import render
|
||||
|
||||
# Create your views here.
|
Loading…
Reference in a new issue