penguin/golifehk

@golifehk bot in Telegram

main.go

raw ยท 204 bytes

package main   

import (
    "log"
    "net/http"
    "github.com/tgckpg/golifehk/handlers"
)

func main() {
    http.HandleFunc( "/", handlers.Index )
    log.Fatal(http.ListenAndServe(":8000", nil))
}