Added functions to fetch requirements from db.

Added functionality to create requirements on page
This commit is contained in:
gulimabr
2025-11-30 15:35:36 -03:00
parent bbbe65067b
commit eb70598cab
11 changed files with 1383 additions and 148 deletions

View File

@@ -1,3 +1,9 @@
export { authService } from './authService'
export { groupService } from './groupService'
export type { Group } from './groupService'
export { tagService } from './tagService'
export type { Tag } from './tagService'
export { priorityService } from './priorityService'
export type { Priority } from './priorityService'
export { requirementService } from './requirementService'
export type { Requirement, RequirementCreateRequest, RequirementUpdateRequest } from './requirementService'