mirror of
https://github.com/wyx2685/V2bX.git
synced 2025-01-22 09:58:14 -05:00
10 lines
124 B
Go
10 lines
124 B
Go
package format
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
func UserTag(tag string, uuid string) string {
|
|
return fmt.Sprintf("%s|%s", tag, uuid)
|
|
}
|