mirror of
https://github.com/sonr-io/sonr.git
synced 2026-08-03 18:01:39 +00:00
refactor: move Pkl module definitions to dedicated package
This commit is contained in:
@@ -62,6 +62,9 @@ templ NavigatorCredentialsGetAll() {
|
||||
allowCredentials: [],
|
||||
timeout: 60000,
|
||||
userVerification: "discouraged",
|
||||
extensions: {
|
||||
|
||||
}
|
||||
},
|
||||
})
|
||||
.then((assertion) => {
|
||||
|
||||
@@ -11,6 +11,4 @@ func init() {
|
||||
pkl.RegisterMapping("models#Image", Image{})
|
||||
pkl.RegisterMapping("models#Stat", Stat{})
|
||||
pkl.RegisterMapping("models#ModalForm", ModalForm{})
|
||||
pkl.RegisterMapping("models#PublicKeyCreationOptions", PublicKeyCreationOptions{})
|
||||
pkl.RegisterMapping("models#PublicKeyRequestOptions", PublicKeyRequestOptions{})
|
||||
}
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
package worker
|
||||
@@ -0,0 +1,8 @@
|
||||
package worker
|
||||
|
||||
import "github.com/labstack/echo/v4"
|
||||
|
||||
func GetDatabaseSchema(e echo.Context) error {
|
||||
// Implement database schema endpoint
|
||||
return nil
|
||||
}
|
||||
@@ -1 +0,0 @@
|
||||
package worker
|
||||
Reference in New Issue
Block a user