Implement /api/get_match (will return empty array, match data is currently not stored in ripple)
This commit is contained in:
13
app/peppy/match.go
Normal file
13
app/peppy/match.go
Normal file
@@ -0,0 +1,13 @@
|
||||
// Package peppy implements the osu! API as defined on the osu-api repository wiki (https://github.com/ppy/osu-api/wiki).
|
||||
package peppy
|
||||
|
||||
import (
|
||||
"database/sql"
|
||||
|
||||
"github.com/gin-gonic/gin"
|
||||
)
|
||||
|
||||
// GetMatch retrieves general match information.
|
||||
func GetMatch(c *gin.Context, db *sql.DB) {
|
||||
c.JSON(200, []struct{}{})
|
||||
}
|
Reference in New Issue
Block a user