chore: formatting

This commit is contained in:
2026-05-10 20:03:35 +02:00
parent 59ec9b17c9
commit 790a384f58
6 changed files with 13 additions and 12 deletions

View File

@@ -7,7 +7,7 @@ import (
type AccessPolicy struct {
PublicPaths map[string]struct{} // exact match paths (e.g. /login)
PublicHeads []string // prefix match paths (e.g. /static/)
PublicHeads []string // prefix match paths (e.g. /static/)
}
func NewAccessPolicy() AccessPolicy {
@@ -17,7 +17,7 @@ func NewAccessPolicy() AccessPolicy {
},
PublicHeads: []string{
"/static/", // static assets
"/dist/", // bundled assets
"/dist/", // bundled assets
},
}
}