blob: de06ab2e5b024a842064070a45d8c588933bc07a (
plain)
1
2
3
4
5
6
7
8
9
10
|
package authentication
import (
"glsamaker/pkg/app/handler/authentication/templates"
"net/http"
)
func AccessDenied(w http.ResponseWriter, r *http.Request) {
templates.RenderAccessDeniedTemplate(w, r)
}
|