Commit 5292e546287c6bfe74d4a2104691a2e9bcb4fbf1

Authored by Gustavo Bernardo
1 parent 5f6667f3

Initiating the urls.py of links

Showing 1 changed file with 6 additions and 0 deletions   Show diff stats
links/urls.py 0 → 100644
... ... @@ -0,0 +1,6 @@
  1 +from django.conf.urls import url, include
  2 +from . import views
  3 +
  4 +urlpatterns = [
  5 + url(r'^$', views.CreateLink.as_view(), name='teste')
  6 +]
... ...