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 (
|
|
|
|
"github.com/gin-gonic/gin"
|
2016-08-15 11:45:42 +00:00
|
|
|
"github.com/jmoiron/sqlx"
|
2016-05-15 12:04:59 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// GetMatch retrieves general match information.
|
2016-08-15 11:45:42 +00:00
|
|
|
func GetMatch(c *gin.Context, db *sqlx.DB) {
|
2016-05-28 18:24:39 +00:00
|
|
|
c.JSON(200, defaultResponse)
|
2016-05-15 12:04:59 +00:00
|
|
|
}
|