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)
}