fix: pgsql user waiter

This commit is contained in:
Marcel S. Henselin 2026-02-12 17:54:16 +01:00
parent 459120d3b3
commit 4189a5ebcb
7 changed files with 101 additions and 61 deletions

View file

@ -123,3 +123,7 @@ func StringFromTemplate(tplFile string, data any) (string, error) {
return tplBuf.String(), nil
}
func ResStr(prefix, resource, name string) string {
return fmt.Sprintf("%s_%s.%s", prefix, resource, name)
}