20 lines
308 B
Go
20 lines
308 B
Go
|
package server
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"net/http"
|
||
|
"strconv"
|
||
|
)
|
||
|
|
||
|
func apiEndpoints() {
|
||
|
http.HandleFunc("/api/latest", allStatus)
|
||
|
}
|
||
|
|
||
|
func StartServer(port int) {
|
||
|
apiEndpoints()
|
||
|
err := http.ListenAndServe(":"+strconv.Itoa(port), nil)
|
||
|
if err != nil {
|
||
|
fmt.Printf("ListenAndServe returned an error: %v", err)
|
||
|
}
|
||
|
}
|