feat: template for service

This commit is contained in:
2025-03-08 19:27:18 +07:00
parent 7395354ae2
commit 5d3584f6bf
4 changed files with 47 additions and 57 deletions

View File

@@ -1,16 +0,0 @@
package utils
import (
"fmt"
"strings"
)
func GetServiceBindPath(structName string) string {
path := fmt.Sprintf("../../bindings/app/internal/services/%sservice.ts", strings.ToLower(structName))
return path
}
func GetServiceType() string {
path := "../types/service.type.ts"
return path
}