Adds a skeleton for the news module

This commit is contained in:
Pawel Kowalski 2018-08-09 18:47:00 +02:00
parent 0a4fb5555a
commit e32f724dd9
7 changed files with 11 additions and 0 deletions

0
server/news/__init__.py Normal file
View File

3
server/news/admin.py Normal file
View File

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

5
server/news/apps.py Normal file
View File

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

0
server/news/factories.py Normal file
View File

View File

3
server/news/models.py Normal file
View File

@ -0,0 +1,3 @@
from django.db import models

0
server/news/schema.py Normal file
View File