Initial commit

This commit is contained in:
2022-09-13 21:42:51 +08:00
committed by Penguin Tsang
commit 7e327abbae
14 changed files with 474 additions and 0 deletions

12
main.go Normal file
View File

@@ -0,0 +1,12 @@
package main
import (
"log"
"net/http"
"github.com/tgckpg/golifehk/handlers"
)
func main() {
http.HandleFunc( "/", handlers.Index )
log.Fatal(http.ListenAndServe(":8000", nil))
}