feat: add user_tenant associations

This commit is contained in:
2025-12-16 14:14:58 +08:00
parent d058b7ffda
commit 4722eef72c
9 changed files with 391 additions and 24 deletions

View File

@@ -0,0 +1,9 @@
package utils
import "encoding/json"
// MustString
func MustJsonString(in any) string {
b, _ := json.Marshal(in)
return string(b)
}