11 lines
163 B
Go
11 lines
163 B
Go
package handlers
|
|
|
|
import (
|
|
"log"
|
|
"net/http"
|
|
)
|
|
|
|
func PostPage(w http.ResponseWriter, req *http.Request) {
|
|
log.Printf("Serving a post")
|
|
log.Print(req.URL.Path)
|
|
} |