golifehk/main.go

13 lines
204 B
Go
Raw Normal View History

2022-09-13 13:42:51 +00:00
package main
import (
"log"
"net/http"
"github.com/tgckpg/golifehk/handlers"
)
func main() {
http.HandleFunc( "/", handlers.Index )
log.Fatal(http.ListenAndServe(":8000", nil))
}