Skip to content

Commit

Permalink
add template code for backend of planner service
Browse files Browse the repository at this point in the history
  • Loading branch information
GrasshopperBears authored and sboh1214 committed May 7, 2023
1 parent 4e9419f commit 376d551
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 0 deletions.
Empty file added apps/planner/__init__.py
Empty file.
3 changes: 3 additions & 0 deletions apps/planner/admin.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from django.contrib import admin

# Register your models here.
5 changes: 5 additions & 0 deletions apps/planner/apps.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
from django.apps import AppConfig


class PlannerConfig(AppConfig):
name = 'planner'
Empty file.
3 changes: 3 additions & 0 deletions apps/planner/models.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from django.db import models

# Create your models here.
Empty file added apps/planner/signals.py
Empty file.
3 changes: 3 additions & 0 deletions apps/planner/views.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from django.shortcuts import render

# Create your views here.

0 comments on commit 376d551

Please sign in to comment.