Skip to content

Commit b4c5da0

Browse files
author
Prad N
committed
refactor: reorganize application structure and dependencies
1 parent 18992a2 commit b4c5da0

16 files changed

+9
-5
lines changed

β€Žapp/app.go

+6-4
Original file line numberDiff line numberDiff line change
@@ -7,21 +7,23 @@ import (
77
"strings"
88
"syscall/js"
99

10+
"github.com/onsonr/motr/app/context"
1011
"github.com/onsonr/motr/app/handlers"
1112
"github.com/onsonr/motr/app/routes"
1213
"github.com/onsonr/motr/internal/server"
13-
"github.com/onsonr/motr/internal/worker"
14+
"github.com/onsonr/motr/pkg/worker"
1415
)
1516

1617
// Start returns a new Vault instance
1718
func Start(s *server.Server) func() {
1819
s.Echo.HTTPErrorHandler = handlers.GlobalErrorHandler()
20+
s.Echo.Use(context.WASMMiddleware)
1921
routes.Register(s.Echo)
20-
return serveFetch(s.Echo)
22+
return fetch(s.Echo)
2123
}
2224

23-
// serveFetch serves HTTP requests with optimized handler management
24-
func serveFetch(handler http.Handler) func() {
25+
// fetch serves HTTP requests with optimized handler management
26+
func fetch(handler http.Handler) func() {
2527
h := handler
2628
if h == nil {
2729
h = http.DefaultServeMux
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

β€Žapp/blocks/errors/components_templ.go β€Žapp/blocks/errors/views_templ.go

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
File renamed without changes.
File renamed without changes.

β€Žapp/blocks/register/types.go

+2
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ type CredentialDescriptor struct {
1414
} `json:"response"`
1515
}
1616

17+
// CredentialCreationOptions is the structure that matches the frontend data
1718
type CredentialCreationOptions struct {
1819
PublicKeyCredentialCreationOptions struct {
1920
RpID string `json:"rpId"`
@@ -45,6 +46,7 @@ type CredentialCreationOptions struct {
4546
} `json:"publicKey"`
4647
}
4748

49+
// CredentialCreationResponse is the structure that matches the frontend data
4850
type CredentialCreationResponse struct {
4951
ID string `json:"id"`
5052
RawID string `json:"rawId"`
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
Β (0)