Commit 69e359260d367c8bb195c3659d466ccb909a03ca

Authored by Macartur Sousa
0 parents

Initial commit

Signed-off-by: Macartur Sousa <macartur.sc@gmail.com>
Signed-off-by: Alexandre Barbosa <alexandrealmeidabarbosa@gmail.com>
__init__.py 0 → 100644
  1 +++ a/__init__.py
... ...
admin.py 0 → 100644
  1 +++ a/admin.py
... ... @@ -0,0 +1,3 @@
  1 +from django.contrib import admin
  2 +
  3 +# Register your models here.
... ...
migrations/__init__.py 0 → 100644
  1 +++ a/migrations/__init__.py
... ...
models.py 0 → 100644
  1 +++ a/models.py
... ... @@ -0,0 +1,3 @@
  1 +from django.db import models
  2 +
  3 +# Create your models here.
... ...
tests.py 0 → 100644
  1 +++ a/tests.py
... ... @@ -0,0 +1,3 @@
  1 +from django.test import TestCase
  2 +
  3 +# Create your tests here.
... ...
views.py 0 → 100644
  1 +++ a/views.py
... ... @@ -0,0 +1,3 @@
  1 +from django.shortcuts import render
  2 +
  3 +# Create your views here.
... ...