mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-03-29 13:41:59 +02:00
8 lines
133 B
Python
8 lines
133 B
Python
from django.urls import path
|
|
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path("net-worth/", views.net_worth_main, name="net_worth"),
|
|
]
|