refactor: modularize road management modules

This commit is contained in:
2026-06-17 13:31:25 +05:30
parent 9bb740e446
commit 182d4ac293
41 changed files with 2386 additions and 1894 deletions

View File

@@ -1,4 +1,5 @@
import axiosClient from '../axios/axios';
import { API_ROUTES } from '@/constants/apiRoutes';
import { Detection } from '@/types';
import { projectService } from './project.service';
@@ -31,7 +32,7 @@ export const detectionService = {
};
};
};
}>('biz/api/v1/dashboard/overview', {
}>(API_ROUTES.DASHBOARD.OVERVIEW, {
params: { project_id: project.id },
});