Skip to content

Commit ac7ab00

Browse files
committed
Enpoints app
1 parent 8be71cb commit ac7ab00

File tree

8 files changed

+25
-0
lines changed

8 files changed

+25
-0
lines changed

.gitignore

+7
Original file line numberDiff line numberDiff line change
@@ -158,3 +158,10 @@ cython_debug/
158158
# and can be added to the global gitignore or merged into this file. For a more nuclear
159159
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
160160
#.idea/
161+
/.idea/inspectionProfiles/profiles_settings.xml
162+
/.idea/inspectionProfiles/Project_Default.xml
163+
/.idea/.gitignore
164+
/.idea/drf_endpoint_examples.iml
165+
/.idea/misc.xml
166+
/.idea/modules.xml
167+
/.idea/vcs.xml

endpoints/__init__.py

Whitespace-only changes.

endpoints/admin.py

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
from django.contrib import admin
2+
3+
# Register your models here.

endpoints/apps.py

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
from django.apps import AppConfig
2+
3+
4+
class EndpointsConfig(AppConfig):
5+
default_auto_field = 'django.db.models.BigAutoField'
6+
name = 'endpoints'

endpoints/migrations/__init__.py

Whitespace-only changes.

endpoints/models.py

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
from django.db import models
2+
3+
# Create your models here.

endpoints/tests.py

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
from django.test import TestCase
2+
3+
# Create your tests here.

endpoints/views.py

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
from django.shortcuts import render
2+
3+
# Create your views here.

0 commit comments

Comments
 (0)