diff --git a/ungleichotp/otpauth/__init__.py b/ungleichotp/otpauth/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/ungleichotp/otpauth/admin.py b/ungleichotp/otpauth/admin.py new file mode 100644 index 0000000..8c38f3f --- /dev/null +++ b/ungleichotp/otpauth/admin.py @@ -0,0 +1,3 @@ +from django.contrib import admin + +# Register your models here. diff --git a/ungleichotp/otpauth/apps.py b/ungleichotp/otpauth/apps.py new file mode 100644 index 0000000..7eb2565 --- /dev/null +++ b/ungleichotp/otpauth/apps.py @@ -0,0 +1,5 @@ +from django.apps import AppConfig + + +class OtpauthConfig(AppConfig): + name = 'otpauth' diff --git a/ungleichotp/otpauth/migrations/__init__.py b/ungleichotp/otpauth/migrations/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/ungleichotp/otpauth/models.py b/ungleichotp/otpauth/models.py new file mode 100644 index 0000000..71a8362 --- /dev/null +++ b/ungleichotp/otpauth/models.py @@ -0,0 +1,3 @@ +from django.db import models + +# Create your models here. diff --git a/ungleichotp/otpauth/tests.py b/ungleichotp/otpauth/tests.py new file mode 100644 index 0000000..7ce503c --- /dev/null +++ b/ungleichotp/otpauth/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/ungleichotp/otpauth/views.py b/ungleichotp/otpauth/views.py new file mode 100644 index 0000000..91ea44a --- /dev/null +++ b/ungleichotp/otpauth/views.py @@ -0,0 +1,3 @@ +from django.shortcuts import render + +# Create your views here.