| 12345678910111213141516171819202122232425 |
- package main
- type Status struct{
- Playing bool //If the device is playing
- PlayingFileName string //The playing filename
- PlayingFileURL string //The playing URL
- PlayingPosition int //The number of seconds that is currently playing
- Volume int //The volume currently is playing at, in percentage
- Status string //Status of the device, support {downloading, converting, playing, paused}
- }
- func handleIndex(w http.ResponseWriter, r *http.Request){
- //Serve the index
- sendOK(w)
- }
- func handleStatus(w http.ResponseWriter, r *http.Request){
-
- }
- func handleEndpoints(w http.ResponseWriter, r *http.Request){
- }
|