a 'start' event

Signed-off-by: Jeff Carr <jcarr@wit.com>
This commit is contained in:
Jeff Carr 2024-10-14 15:26:11 -05:00
parent e19465c39f
commit 5b47c44fb5
2 changed files with 7 additions and 1 deletions

View File

@ -7,7 +7,7 @@ REDOMOD = $(shell if [ -e go.sum ]; then echo go.sum exists; else GO111MODULE=
all:
GO111MODULE=off go build -v -x -ldflags "-X main.Version=${VERSION} -X gui.GUIVERSION=${VERSION}"
./virtigod --version
sudo ./virtigod
# sudo ./virtigod
# this is for release builds using the go.mod files
release-build:

View File

@ -46,6 +46,12 @@ func okHandler(w http.ResponseWriter, r *http.Request) {
return
}
if tmp == "/start" {
start := r.URL.Query().Get("start")
fmt.Fprint(w,"Handling URL:", tmp, "should start here: droplet", start)
return
}
if tmp == "/favicon.ico" {
writeFile(w, "ipv6.png")
return