from django.urls import path, include
from . import views
urlpatterns = [
path('get-client-ip/', views.get_client_ip, name='get-client-ip'),
]