feat: publish the Sandwich Hime tutorial starter

This commit is contained in:
2026-08-11 23:59:44 -04:00
commit ddd91c7e7c
20 changed files with 790 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
// SPDX-License-Identifier: 0BSD
package main
import (
"log"
"net/http"
"gitea.speelman.ca/gamertan/sandwich-hime-tutorial/internal/server"
)
func main() {
const address = "127.0.0.1:8080"
log.Printf("listening on http://%s", address)
log.Fatal(http.ListenAndServe(address, server.New()))
}