Refactoring code to use packages

This commit is contained in:
Muyao CHEN
2024-06-26 22:06:32 +02:00
parent b207b9a293
commit 144e700b15
3 changed files with 10 additions and 8 deletions

19
cmd/web/main.go Normal file
View File

@ -0,0 +1,19 @@
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)
}