8 lines
124 B
Go
8 lines
124 B
Go
package util
|
|
|
|
import "fmt"
|
|
|
|
func From(groupId int64, userId int64) string {
|
|
return fmt.Sprintf("%d_%d", groupId, userId)
|
|
}
|