⬆️ Upgrade nexus
This commit is contained in:
parent
d3d7c4b573
commit
cc7c96311f
2
go.mod
2
go.mod
@ -3,7 +3,7 @@ module git.solsynth.dev/hypernet/passport
|
|||||||
go 1.23.2
|
go 1.23.2
|
||||||
|
|
||||||
require (
|
require (
|
||||||
git.solsynth.dev/hypernet/nexus v0.0.0-20250329053929-488793a2dc56
|
git.solsynth.dev/hypernet/nexus v0.0.0-20250329072130-f113ae6cbaf7
|
||||||
git.solsynth.dev/hypernet/paperclip v0.0.0-20250310151112-1d866f317f47
|
git.solsynth.dev/hypernet/paperclip v0.0.0-20250310151112-1d866f317f47
|
||||||
git.solsynth.dev/hypernet/pusher v0.0.0-20250216145944-5fb769823a88
|
git.solsynth.dev/hypernet/pusher v0.0.0-20250216145944-5fb769823a88
|
||||||
git.solsynth.dev/hypernet/wallet v0.0.0-20250323095812-468cd655f886
|
git.solsynth.dev/hypernet/wallet v0.0.0-20250323095812-468cd655f886
|
||||||
|
6
go.sum
6
go.sum
@ -1,9 +1,7 @@
|
|||||||
filippo.io/edwards25519 v1.1.0 h1:FNf4tywRC1HmFuKW5xopWpigGjJKiJSV0Cqo0cJWDaA=
|
filippo.io/edwards25519 v1.1.0 h1:FNf4tywRC1HmFuKW5xopWpigGjJKiJSV0Cqo0cJWDaA=
|
||||||
filippo.io/edwards25519 v1.1.0/go.mod h1:BxyFTGdWcka3PhytdK4V28tE5sGfRvvvRV7EaN4VDT4=
|
filippo.io/edwards25519 v1.1.0/go.mod h1:BxyFTGdWcka3PhytdK4V28tE5sGfRvvvRV7EaN4VDT4=
|
||||||
git.solsynth.dev/hypernet/nexus v0.0.0-20250329052546-e7d7cd1000db h1:7IXfXuV2TlZiixUkjTsgx9sPjzobEIcuSuzmUbUlIow=
|
git.solsynth.dev/hypernet/nexus v0.0.0-20250329072130-f113ae6cbaf7 h1:0OitkUQJ3hrobm71UHETLB9N6jTgm6jKTeGRJuBI/6E=
|
||||||
git.solsynth.dev/hypernet/nexus v0.0.0-20250329052546-e7d7cd1000db/go.mod h1:5tk62VQ1DcbR0EAN2jAOqYxHiegUPEC805JlfQ/G19I=
|
git.solsynth.dev/hypernet/nexus v0.0.0-20250329072130-f113ae6cbaf7/go.mod h1:5tk62VQ1DcbR0EAN2jAOqYxHiegUPEC805JlfQ/G19I=
|
||||||
git.solsynth.dev/hypernet/nexus v0.0.0-20250329053929-488793a2dc56 h1:SnT9NVcXQ1WDka9kKAA+lH/r2UJouND7FDugu4ZZwLc=
|
|
||||||
git.solsynth.dev/hypernet/nexus v0.0.0-20250329053929-488793a2dc56/go.mod h1:5tk62VQ1DcbR0EAN2jAOqYxHiegUPEC805JlfQ/G19I=
|
|
||||||
git.solsynth.dev/hypernet/paperclip v0.0.0-20250310151112-1d866f317f47 h1:fvu+bNKPTNtQocssnKbEZ66MqR0iBfAxY3HwlqnmYyE=
|
git.solsynth.dev/hypernet/paperclip v0.0.0-20250310151112-1d866f317f47 h1:fvu+bNKPTNtQocssnKbEZ66MqR0iBfAxY3HwlqnmYyE=
|
||||||
git.solsynth.dev/hypernet/paperclip v0.0.0-20250310151112-1d866f317f47/go.mod h1:jvxq2qftz2v72x+24+cTFJdQKr9eHQTdk3KVR7cx36s=
|
git.solsynth.dev/hypernet/paperclip v0.0.0-20250310151112-1d866f317f47/go.mod h1:jvxq2qftz2v72x+24+cTFJdQKr9eHQTdk3KVR7cx36s=
|
||||||
git.solsynth.dev/hypernet/pusher v0.0.0-20250216145944-5fb769823a88 h1:2HEENe9KUrdaJeNBzx9lsuXQGyzWqCgnLTKQnr8xFr8=
|
git.solsynth.dev/hypernet/pusher v0.0.0-20250216145944-5fb769823a88 h1:2HEENe9KUrdaJeNBzx9lsuXQGyzWqCgnLTKQnr8xFr8=
|
||||||
|
@ -22,7 +22,7 @@ var (
|
|||||||
Nx *nex.Conn
|
Nx *nex.Conn
|
||||||
Px *pushcon.Conn
|
Px *pushcon.Conn
|
||||||
Rx *rx.MqConn
|
Rx *rx.MqConn
|
||||||
Ca *cachekit.CaConn
|
Ca *cachekit.Conn
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
@ -64,7 +64,7 @@ func InitializeToNexus() error {
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
return fmt.Errorf("error during initialize nexus rx module: %v", err)
|
return fmt.Errorf("error during initialize nexus rx module: %v", err)
|
||||||
}
|
}
|
||||||
Ca, err = cachekit.NewCaConn(Nx, time.Second*3)
|
Ca, err = cachekit.NewConn(Nx, time.Second*3)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return fmt.Errorf("error during initialize nexus cache module: %v", err)
|
return fmt.Errorf("error during initialize nexus cache module: %v", err)
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user