feat: add user_tenant associations
This commit is contained in:
9
backend/pkg/utils/json.go
Normal file
9
backend/pkg/utils/json.go
Normal file
@@ -0,0 +1,9 @@
|
||||
package utils
|
||||
|
||||
import "encoding/json"
|
||||
|
||||
// MustString
|
||||
func MustJsonString(in any) string {
|
||||
b, _ := json.Marshal(in)
|
||||
return string(b)
|
||||
}
|
||||
Reference in New Issue
Block a user