feat: initial commit

This commit is contained in:
eric
2026-03-12 22:16:34 +01:00
parent 8555b02752
commit f13f4a9a69
155 changed files with 11988 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
package main
import (
"log"
"net/http"
"github.com/Eriyc/rules_wails/examples/wails3_init_updater/mockupdateserver"
)
func main() {
server := &http.Server{
Addr: "127.0.0.1:18765",
Handler: mockupdateserver.NewHandler(),
}
log.Println("mock updater server listening on http://127.0.0.1:18765")
log.Fatal(server.ListenAndServe())
}