friends/database/get_user_notifications.go

9 lines
242 B
Go

package database
import nexproto "github.com/PretendoNetwork/nex-protocols-go"
// Get notifications for a user
func GetUserNotifications(pid uint32) []*nexproto.PersistentNotification {
return make([]*nexproto.PersistentNotification, 0)
}