1
0
mirror of https://github.com/wyx2685/V2bX.git synced 2025-03-11 06:58:13 -04:00
V2bX/common/format/user.go

10 lines
124 B
Go
Raw Normal View History

2023-07-12 13:44:15 -04:00
package format
import (
"fmt"
)
func UserTag(tag string, uuid string) string {
return fmt.Sprintf("%s|%s", tag, uuid)
}