Update service.go

This commit is contained in:
opbnq-q
2025-02-21 22:09:41 +07:00
committed by GitHub
parent 5aa95c401a
commit 8e182c62b0

View File

@@ -30,14 +30,14 @@ export default class %sService implements IService<%s> {
}
async create(item: %s) {
return await Create(item)
await Create(item)
}
async delete(id: number) {
return await Delete(id)
}
async update(item: %s) {
return await Update(item)
await Update(item)
}
async count() {
return await Count()