knowyt/server/handler/internal.go

24 lines
382 B
Go
Raw Normal View History

2021-07-28 20:21:14 +00:00
package handler
import (
"fmt"
"net/http"
"os"
"time"
)
func Exit(_ http.ResponseWriter, _ *http.Request) {
os.Exit(0)
}
2021-07-29 19:06:25 +00:00
func CreateVersionHandler() HandlerFunc {
2021-07-28 20:21:14 +00:00
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")
}