refactor(controllers): remove unused import in category.controller

Remove unused import `{IDbCategory}` from `category.controller.ts`. This reduces clutter and increases code clarity in the file.

Issue: #12
Signed-off-by: Mathis <yidhra@tuta.io>
This commit is contained in:
Mathis H (Avnyr) 2024-04-25 14:44:24 +02:00
parent ab3b3c9cf5
commit bd80518b5f
Signed by: Mathis
GPG Key ID: DD9E0666A747D126

View File

@ -1,8 +1,7 @@
import type {Request, Response} from "express";
import {Logger} from "tslog";
import type IDbCategory, {IDbCategory} from "@interfaces/database/IDbCategory";
import type IDbCategory from "@interfaces/database/IDbCategory";
import CategoryService from "@services/category.service";
import {body} from "express-validator";
//import {validationResult} from "express-validator";