Files
musiclist-server/welcome/urls.py
Daniel Cortes 3568abfbc7 Commit inicial
Habia trabajado un buen poco pero como vi que tenia que separar los
repositorios perdi bastante la historia :c
2020-05-22 00:05:27 -04:00

12 lines
176 B
Python

from django.shortcuts import render
from django.urls import path
def index(request):
return render(request, 'welcome/index.html')
urlpatterns = [
path('', index)
]