from django.urls import path
from .views import update_companycode

urlpatterns = [
    path("", update_companycode, name="update_companycode"),
]
