move api/server to api/edge/bff

This commit is contained in:
Stephan D
2026-02-28 00:39:20 +01:00
parent 34182af3b8
commit 98db0e4e9e
248 changed files with 406 additions and 18 deletions

View File

@@ -0,0 +1,33 @@
package mutil
func _ref(param string) string {
return param + "_ref"
}
func AccountRefName() string {
return _ref("account")
}
func ObjRefName() string {
return _ref("obj")
}
func OrganizationRefName() string {
return _ref("org")
}
func StatusRefName() string {
return _ref("status")
}
func ProjectRefName() string {
return _ref("project")
}
func InvitationRefName() string {
return _ref("invitation")
}
func TokenName() string {
return "token"
}