V2bX/common/format/user.go
2023-07-13 01:44:15 +08:00

10 lines
124 B
Go

package format
import (
"fmt"
)
func UserTag(tag string, uuid string) string {
return fmt.Sprintf("%s|%s", tag, uuid)
}