10 lines
161 B
Python
10 lines
161 B
Python
# -*- coding: utf-8 -*-
|
|
from django.urls import path
|
|
from . import views
|
|
|
|
app_name = 'pos'
|
|
|
|
urlpatterns = [
|
|
path('', views.pos_terminal, name='terminal'),
|
|
]
|