fix: correct file paths in template error handling

This commit is contained in:
Darp Alakun
2025-01-06 19:40:10 -05:00
parent d3e41fa69a
commit 9cc98422d6
26 changed files with 1775 additions and 81 deletions

View File

@@ -8,8 +8,8 @@ import (
"github.com/golang-jwt/jwt"
"github.com/ipfs/go-cid"
"github.com/onsonr/crypto/keys"
"github.com/onsonr/crypto/ucan"
"github.com/onsonr/sonr/crypto/keys"
"github.com/onsonr/sonr/crypto/ucan"
)
type IPFSTokenStore interface {

View File

@@ -6,10 +6,10 @@ import (
"github.com/labstack/echo/v4"
"github.com/medama-io/go-useragent"
"github.com/onsonr/crypto/mpc"
"github.com/onsonr/hway/pkg/common"
hway "github.com/onsonr/hway/pkg/config"
hwayorm "github.com/onsonr/hway/pkg/models"
"github.com/onsonr/sonr/crypto/mpc"
)
type GatewayContext struct {

View File

@@ -1,8 +1,8 @@
package context
import (
"github.com/onsonr/crypto/mpc"
"github.com/onsonr/hway/pkg/common"
"github.com/onsonr/sonr/crypto/mpc"
"lukechampine.com/blake3"
)