Skip to content

Commit 60d1506

Browse files
committed
startapp stub
1 parent 8143a8c commit 60d1506

File tree

6 files changed

+12
-0
lines changed

6 files changed

+12
-0
lines changed

project/slacksync/__init__.py

Whitespace-only changes.

project/slacksync/admin.py

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

project/slacksync/migrations/__init__.py

Whitespace-only changes.

project/slacksync/models.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
from django.db import models
2+
3+
# Create your models here.

project/slacksync/tests.py

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

project/slacksync/views.py

Lines changed: 3 additions & 0 deletions
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)