mirror of
https://github.com/PretendoNetwork/friends.git
synced 2026-04-20 08:37:31 -05:00
9 lines
227 B
Go
9 lines
227 B
Go
package database
|
|
|
|
import nexproto "github.com/PretendoNetwork/nex-protocols-go"
|
|
|
|
// Get a users blacklist
|
|
func GetUserBlockList(pid uint32) []*nexproto.BlacklistedPrincipal {
|
|
return make([]*nexproto.BlacklistedPrincipal, 0)
|
|
}
|