2016-05-15 12:04:59 +00:00
|
|
|
// Package peppy implements the osu! API as defined on the osu-api repository wiki (https://github.com/ppy/osu-api/wiki).
|
|
|
|
package peppy
|
|
|
|
|
|
|
|
import (
|
2016-08-15 11:45:42 +00:00
|
|
|
"github.com/jmoiron/sqlx"
|
2017-02-02 12:40:28 +00:00
|
|
|
"github.com/valyala/fasthttp"
|
2016-05-15 12:04:59 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// GetMatch retrieves general match information.
|
2017-02-02 12:40:28 +00:00
|
|
|
func GetMatch(c *fasthttp.RequestCtx, db *sqlx.DB) {
|
|
|
|
json(c, 200, defaultResponse)
|
2016-05-15 12:04:59 +00:00
|
|
|
}
|