udemy-go-web-1/cmd/web/main.go
2024-06-26 22:06:32 +02:00

20 lines
346 B
Go

package main
import (
"fmt"
"go-udemy-web-1/pkg/handlers"
"net/http"
)
const portNumber = ":8080"
// main is the main application function
func main() {
http.HandleFunc("/", handlers.Home)
http.HandleFunc("/about", handlers.About)
fmt.Printf("Starting application on port %s\n", portNumber)
_ = http.ListenAndServe(portNumber, nil)
}