mirror of
https://github.com/garethgeorge/backrest.git
synced 2025-12-17 02:55:39 +00:00
12 lines
172 B
Go
12 lines
172 B
Go
package webui
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/vearutop/statigz"
|
|
)
|
|
|
|
func Handler() http.Handler {
|
|
return statigz.FileServer(content, statigz.FSPrefix(contentPrefix))
|
|
}
|