Documentation
¶
Index ¶
- Variables
- func GetMinigameToplist(c fiber.Ctx) error
- func GetMinigameToplistUsers(c fiber.Ctx) error
- func GetSkillToplist(c fiber.Ctx) error
- func GetSkillToplistUsers(c fiber.Ctx) error
- func QueryMinigameToplist() ([]model.Toplist, error)
- func QueryMinigameToplistUsers(minigame int) ([]model.Player, error)
- func QuerySkillToplist() ([]model.Toplist, error)
- func QuerySkillToplistUsers(skillId int) ([]model.Player, error)
Constants ¶
This section is empty.
Variables ¶
View Source
var MINIGAME_TOPLIST_QUERY = `
select
id, activities, unbannedcount, updated
from grouped.minigames
ORDER BY unbannedcount DESC;
`
View Source
var MINIGAME_TOPLIST_USER_QUERY = `` /* 545-byte string literal not displayed */
View Source
var SKILLER_TOPLIST_QUERY = `
select
id, skills, unbannedcount, updated
from grouped.skillers
ORDER BY unbannedcount DESC;
`
View Source
var SKILLER_TOPLIST_USERS_QUERY = `` /* 546-byte string literal not displayed */
Functions ¶
func GetMinigameToplist ¶
func GetMinigameToplistUsers ¶
func GetSkillToplistUsers ¶
func QueryMinigameToplist ¶
func QuerySkillToplist ¶
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.