mirror of
https://github.com/zitadel/zitadel.git
synced 2025-10-27 09:49:38 +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)
|
||
|
|
}
|