fix: imports

This commit is contained in:
opbnq-q
2025-03-15 20:18:04 +07:00
parent d2dedd85f9
commit 98c8f94f84
2 changed files with 6 additions and 7 deletions

View File

@@ -1,7 +1,7 @@
import { GetAll, Create, Delete, GetById, Update, Count, SortedByOrder, SearchByAllTextFields } from "../../bindings/app/internal/services/{{.LowerModelName}}service.ts"
import { GetAll, Create, Delete, GetById, Update, Count, SortedByOrder, SearchByAllTextFields } from "../../bindings/app/internal/services/{{.LowerModelName}}service"
import type { {{.ModelName}} } from "{{.ServicesPath}}"
import type { IService } from "../types/service.type.ts"
import type { SortOptions } from "../types/sort-options.type.ts";
import type { IService } from "../types/service.type"
import type { SortOptions } from "../types/sort-options.type";
export default class {{.ModelName}}Service implements IService<{{.ModelName}}> {