Added: Bug Fixes

This commit is contained in:
shreyvishal
2025-06-25 16:30:47 +05:30
parent 02c69b98b6
commit 7a0a78d43d
12 changed files with 405 additions and 104 deletions

View File

@@ -133,6 +133,7 @@ type Route struct {
// Keyset represents a collection of cryptographic keys used for signing and encryption.
type Keyset struct {
SubscriberID string
UniqueKeyID string // UniqueKeyID is the identifier for the key pair.
SigningPrivate string // SigningPrivate is the private key used for signing operations.
SigningPublic string // SigningPublic is the public key corresponding to the signing private key.
@@ -183,4 +184,4 @@ type Message struct {
// Response represents the main response structure.
type Response struct {
Message Message `json:"message"`
}
}