1
0
mirror of https://github.com/wyx2685/V2bX.git synced 2025-03-11 06:58:13 -04:00
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)
}