docs(htmx_repo): add v2.0.8 changelog entry

This commit is contained in:
2026-01-05 11:24:23 -05:00
parent a291096d94
commit 889f2058c4
16 changed files with 2295 additions and 0 deletions

18
main.go Normal file
View File

@@ -0,0 +1,18 @@
package main
import (
"fmt"
"log"
"net/http"
"nebula/handlers"
)
func main() {
mux := http.NewServeMux()
handlers.RegisterRoutes(mux)
addr := ":8080"
fmt.Printf("Starting server at http://localhost%s\n", addr)
log.Fatal(http.ListenAndServe(addr, mux))
}