mirror of
https://github.com/owncast/owncast.git
synced 2024-11-21 20:28:15 +03:00
14 lines
268 B
Go
14 lines
268 B
Go
package controllers
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/owncast/owncast/static"
|
|
)
|
|
|
|
var staticServer = http.FileServer(http.FS(static.GetWeb()))
|
|
|
|
// serveWeb will serve web assets.
|
|
func serveWeb(w http.ResponseWriter, r *http.Request) {
|
|
staticServer.ServeHTTP(w, r)
|
|
}
|