from django.urls import include, re_path
from .views import *
from .models import *

urlpatterns = [
    re_path(r'^historial/$', historial.as_view(), name='historial_'),
    #re_path(r'^logout/$', cerrar_sesion, name='close'),
]
