mirror of
https://github.com/zitadel/zitadel.git
synced 2025-04-26 03:50:51 +00:00
10 lines
152 B
Go
10 lines
152 B
Go
![]() |
package handler
|
||
|
|
||
|
import (
|
||
|
"net/http"
|
||
|
)
|
||
|
|
||
|
func (l *Login) handleResources(staticDir http.FileSystem) http.Handler {
|
||
|
return http.FileServer(staticDir)
|
||
|
}
|