12 lines
161 B
Go
12 lines
161 B
Go
package router
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"management/internal/tpl"
|
|
)
|
|
|
|
func Home(w http.ResponseWriter, r *http.Request) {
|
|
tpl.HTML(w, r, "home/home.tmpl", nil)
|
|
}
|