mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-03-25 19:01:24 +01: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"),
|
|
]
|