blob: 50ffa25cd4a296ac3f2bd60b9d2904ced3141261 (
plain)
1
2
3
4
5
6
7
8
9
|
package endpoints
import "net/http"
func RegisterEndpoints() {
http.HandleFunc("/api/getSongs", getSongs)
http.HandleFunc("/api/randomSong", getRandomSong)
http.HandleFunc("/api/getSong", getSong)
}
|