1
0
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:
Tom Hacohen 2020-02-19 14:55:56 +02:00
parent 228522d019
commit 703a5ae36a
7 changed files with 17 additions and 0 deletions

View File

3
django_etesync/admin.py Normal file
View File

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

5
django_etesync/apps.py Normal file
View File

@ -0,0 +1,5 @@
from django.apps import AppConfig
class DjangoEtesyncConfig(AppConfig):
name = 'django_etesync'

View File

3
django_etesync/models.py Normal file
View File

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

3
django_etesync/tests.py Normal file
View File

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

3
django_etesync/views.py Normal file
View File

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