feature/dwn echo middleware (#17)

* refactor: remove indexedDB dependency and replace with browser filesystem

* refactor: remove unused layout templating from global block

* feat: add support for building from source

* feat: add Credential creation and retrieval via Dexie database

* feat: add breadcrumbs component
This commit is contained in:
Prad Nukala
2024-09-19 19:09:01 -04:00
committed by GitHub
parent 96e6486c43
commit a115b79db7
36 changed files with 558 additions and 1103 deletions
+2 -2
View File
@@ -8,7 +8,7 @@ import (
"github.com/onsonr/sonr/internal/dwn/front"
"github.com/onsonr/sonr/internal/dwn/handlers"
"github.com/onsonr/sonr/internal/dwn/middleware"
"github.com/onsonr/sonr/internal/dwn/middleware/jsexc"
"github.com/onsonr/sonr/internal/vfs"
)
func main() {
@@ -16,5 +16,5 @@ func main() {
e.Use(middleware.UseSession)
front.RegisterViews(e)
handlers.RegisterState(e)
jsexc.Serve(e)
vfs.Serve(e)
}