mirror of
https://github.com/etesync/server
synced 2024-11-05 15:58:55 +00:00
Create new django project.
This commit is contained in:
parent
228522d019
commit
703a5ae36a
0
django_etesync/__init__.py
Normal file
0
django_etesync/__init__.py
Normal file
3
django_etesync/admin.py
Normal file
3
django_etesync/admin.py
Normal file
@ -0,0 +1,3 @@
|
||||
from django.contrib import admin
|
||||
|
||||
# Register your models here.
|
5
django_etesync/apps.py
Normal file
5
django_etesync/apps.py
Normal file
@ -0,0 +1,5 @@
|
||||
from django.apps import AppConfig
|
||||
|
||||
|
||||
class DjangoEtesyncConfig(AppConfig):
|
||||
name = 'django_etesync'
|
0
django_etesync/migrations/__init__.py
Normal file
0
django_etesync/migrations/__init__.py
Normal file
3
django_etesync/models.py
Normal file
3
django_etesync/models.py
Normal file
@ -0,0 +1,3 @@
|
||||
from django.db import models
|
||||
|
||||
# Create your models here.
|
3
django_etesync/tests.py
Normal file
3
django_etesync/tests.py
Normal file
@ -0,0 +1,3 @@
|
||||
from django.test import TestCase
|
||||
|
||||
# Create your tests here.
|
3
django_etesync/views.py
Normal file
3
django_etesync/views.py
Normal file
@ -0,0 +1,3 @@
|
||||
from django.shortcuts import render
|
||||
|
||||
# Create your views here.
|
Loading…
Reference in New Issue
Block a user