mirror of
https://github.com/PretendoNetwork/friends.git
synced 2026-03-21 18:04:11 -05:00
Replace MongoDB usage with GRPC calls to the account server. Also include documentation on the README and a Makefile.
11 lines
174 B
Go
11 lines
174 B
Go
package database
|
|
|
|
import (
|
|
"fmt"
|
|
"strings"
|
|
)
|
|
|
|
func PIDArrayToString(array []uint32) string {
|
|
return strings.Trim(strings.Replace(fmt.Sprint(array), " ", ",", -1), "[]")
|
|
}
|