feat: complete Phase 4 of service refactoring

- Marked tasks in `TODO.md` as completed for moving task-related files to the `task-management` directory and correcting imports across the codebase.
- Updated imports in `seed-data.ts`, `seed-tags.ts`, API routes, and various components to reflect the new structure.
- Removed obsolete `daily.ts`, `tags.ts`, and `tasks.ts` files to streamline the codebase.
- Added new tasks in `TODO.md` for future cleaning and organization of service imports.
This commit is contained in:
Julien Froidefond
2025-09-23 10:25:41 +02:00
parent b8e0307f03
commit f5417040fd
23 changed files with 38 additions and 35 deletions

View File

@@ -1,4 +1,4 @@
import { tasksService } from '../src/services/tasks';
import { tasksService } from '../src/services/task-management/tasks';
import { TaskStatus, TaskPriority } from '../src/lib/types';
/**

View File

@@ -1,4 +1,4 @@
import { tagsService } from '../src/services/tags';
import { tagsService } from '../src/services/task-management/tags';
async function seedTags() {
console.log('🏷️ Création des tags de test...');