11 lines
201 B
Go
11 lines
201 B
Go
package application
|
|
|
|
import (
|
|
"net/http"
|
|
)
|
|
|
|
func (h *Handler) DirectoryHomeHTTPHandler() http.HandlerFunc {
|
|
return func(w http.ResponseWriter, r *http.Request) {
|
|
h.renderer.DirectoryHome(w, r)
|
|
}
|
|
} |