""" Sync URLs for KeepItGoing. """ from django.urls import path from . import views # API URLs (to be included under /api/sync/) api_urlpatterns = [ path('', views.sync, name='api-sync'), path('conflicts/', views.get_conflicts, name='api-sync-conflicts'), path('conflicts//resolve/', views.resolve_conflict, name='api-sync-resolve'), ]