mirror of
https://github.com/garethgeorge/backrest.git
synced 2026-05-04 03:50:30 +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))
|
|
}
|