summaryrefslogtreecommitdiffstats
path: root/chat_api
diff options
context:
space:
mode:
Diffstat (limited to 'chat_api')
-rw-r--r--chat_api/__init__.py0
-rw-r--r--chat_api/admin.py3
-rw-r--r--chat_api/apps.py6
-rw-r--r--chat_api/migrations/__init__.py0
-rw-r--r--chat_api/models.py3
-rw-r--r--chat_api/tests.py3
-rw-r--r--chat_api/urls.py5
-rw-r--r--chat_api/views.py3
8 files changed, 23 insertions, 0 deletions
diff --git a/chat_api/__init__.py b/chat_api/__init__.py
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/chat_api/__init__.py
diff --git a/chat_api/admin.py b/chat_api/admin.py
new file mode 100644
index 0000000..8c38f3f
--- /dev/null
+++ b/chat_api/admin.py
@@ -0,0 +1,3 @@
1from django.contrib import admin
2
3# Register your models here.
diff --git a/chat_api/apps.py b/chat_api/apps.py
new file mode 100644
index 0000000..89f7109
--- /dev/null
+++ b/chat_api/apps.py
@@ -0,0 +1,6 @@
1from django.apps import AppConfig
2
3
4class ChatApiConfig(AppConfig):
5 default_auto_field = 'django.db.models.BigAutoField'
6 name = 'chat_api'
diff --git a/chat_api/migrations/__init__.py b/chat_api/migrations/__init__.py
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/chat_api/migrations/__init__.py
diff --git a/chat_api/models.py b/chat_api/models.py
new file mode 100644
index 0000000..71a8362
--- /dev/null
+++ b/chat_api/models.py
@@ -0,0 +1,3 @@
1from django.db import models
2
3# Create your models here.
diff --git a/chat_api/tests.py b/chat_api/tests.py
new file mode 100644
index 0000000..7ce503c
--- /dev/null
+++ b/chat_api/tests.py
@@ -0,0 +1,3 @@
1from django.test import TestCase
2
3# Create your tests here.
diff --git a/chat_api/urls.py b/chat_api/urls.py
new file mode 100644
index 0000000..d2d839f
--- /dev/null
+++ b/chat_api/urls.py
@@ -0,0 +1,5 @@
1from django.urls import path
2
3urlpatterns = [
4
5]
diff --git a/chat_api/views.py b/chat_api/views.py
new file mode 100644
index 0000000..91ea44a
--- /dev/null
+++ b/chat_api/views.py
@@ -0,0 +1,3 @@
1from django.shortcuts import render
2
3# Create your views here.