20 lines
346 B
Go
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)
|
|
}
|