HPNL 3 mesi fa
commit
acc1d89ee4
7 ha cambiato i file con 18 aggiunte e 0 eliminazioni
  1. 0 0
      __init__.py
  2. 3 0
      admin.py
  3. 6 0
      apps.py
  4. 0 0
      migrations/__init__.py
  5. 3 0
      models.py
  6. 3 0
      tests.py
  7. 3 0
      views.py

+ 0 - 0
__init__.py


+ 3 - 0
admin.py

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

+ 6 - 0
apps.py

@@ -0,0 +1,6 @@
+from django.apps import AppConfig
+
+
+class WikiConfig(AppConfig):
+    default_auto_field = 'django.db.models.BigAutoField'
+    name = 'wiki'

+ 0 - 0
migrations/__init__.py


+ 3 - 0
models.py

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

+ 3 - 0
tests.py

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

+ 3 - 0
views.py

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