knowyt/server/handler/internal.go
2021-07-29 21:06:25 +02:00

24 lines
382 B
Go

package handler
import (
"fmt"
"net/http"
"os"
"time"
)
func Exit(_ http.ResponseWriter, _ *http.Request) {
os.Exit(0)
}
func CreateVersionHandler() HandlerFunc {
startTime := time.Now().Unix()
return func(w http.ResponseWriter, r *http.Request) {
fmt.Fprintf(w, "%d\n", startTime)
}
}
func IsLoggedIn(w http.ResponseWriter, _ *http.Request) {
fmt.Fprintf(w, "ok")
}