mirror of
https://github.com/int128/kubelogin.git
synced 2026-02-14 16:39:51 +00:00
30 lines
664 B
Go
30 lines
664 B
Go
package main
|
|
|
|
import (
|
|
"log"
|
|
"net/http"
|
|
|
|
"github.com/int128/kubelogin/pkg/usecases/authentication/authcode"
|
|
)
|
|
|
|
func main() {
|
|
http.HandleFunc("/BrowserSuccessHTML", func(w http.ResponseWriter, r *http.Request) {
|
|
w.Header().Add("content-type", "text/html")
|
|
_, _ = w.Write([]byte(authcode.BrowserSuccessHTML))
|
|
})
|
|
http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
|
|
w.Header().Add("content-type", "text/html")
|
|
_, _ = w.Write([]byte(`
|
|
<html>
|
|
<body>
|
|
<ul>
|
|
<li><a href="BrowserSuccessHTML">BrowserSuccessHTML</a></li>
|
|
</ul>
|
|
</body>
|
|
</html>
|
|
`))
|
|
})
|
|
log.Printf("http://localhost:8000")
|
|
log.Fatal(http.ListenAndServe("127.0.0.1:8000", nil))
|
|
}
|