df433a9179
Co-authored-by: Cursor <cursoragent@cursor.com>
14 lines
181 B
Go
14 lines
181 B
Go
package web
|
|
|
|
import (
|
|
"embed"
|
|
"net/http"
|
|
)
|
|
|
|
//go:embed index.html app.js style.css
|
|
var content embed.FS
|
|
|
|
func Handler() http.Handler {
|
|
return http.FileServer(http.FS(content))
|
|
}
|