nimona/go-nimona

View on GitHub
context.go

Summary

Maintainability
A
0 mins
Test Coverage
package nimona

// TODO(geoah) refactor to use IdentityStore
type RequestContext struct {
    KeygraphID    KeygraphID
    PublicKey     PublicKey
    PrivateKey    PrivateKey
    DocumentStore *DocumentStore
}

type SigningContext struct {
    KeygraphID KeygraphID
    PrivateKey PrivateKey
}