10 lines
131 B
Go
10 lines
131 B
Go
package handlers
|
|
|
|
import (
|
|
"log"
|
|
"net/http"
|
|
)
|
|
|
|
func Public(w http.ResponseWriter, req *http.Request) {
|
|
log.Print(req.URL.Path)
|
|
} |