24 lines
512 B
Go
24 lines
512 B
Go
package server
|
|
|
|
import (
|
|
"fmt"
|
|
"net/http"
|
|
"strconv"
|
|
)
|
|
|
|
func apiEndpoints() {
|
|
http.HandleFunc("/api/latest", allStatus)
|
|
http.HandleFunc("/api/history/day", dayHistory)
|
|
http.HandleFunc("/api/history/week", weekHistory)
|
|
http.HandleFunc("/api/history/month", monthHistory)
|
|
http.HandleFunc("/api/history/year", yearHistory)
|
|
}
|
|
|
|
func StartServer(port int) {
|
|
apiEndpoints()
|
|
err := http.ListenAndServe(":"+strconv.Itoa(port), nil)
|
|
if err != nil {
|
|
fmt.Printf("ListenAndServe returned an error: %v", err)
|
|
}
|
|
}
|