17 lines
261 B
Go

package webui
import (
_ "embed"
"fmt"
"net/http"
)
//go:embed assets/md-uploader.css
var webuiCss string
// Serves the style sheet of the web app.
func serveCss(w http.ResponseWriter, r *http.Request) {
setHeadersForCss(w)
fmt.Fprint(w, webuiCss)
}