8 lines
159 B
Go
8 lines
159 B
Go
|
package application
|
||
|
|
||
|
import "net/http"
|
||
|
|
||
|
func (h *ApplicationHandler) DirectoryHome(w http.ResponseWriter, r *http.Request) {
|
||
|
h.Renderer.DirectoryHome(w, r)
|
||
|
}
|