11 lines
202 B
Go
11 lines
202 B
Go
|
|
package invocation
|
||
|
|
|
||
|
|
import "github.com/ipfs/go-cid"
|
||
|
|
|
||
|
|
// Bundle carries together a decoded token with its Cid and raw signed data.
|
||
|
|
type Bundle struct {
|
||
|
|
Cid cid.Cid
|
||
|
|
Decoded *Token
|
||
|
|
Sealed []byte
|
||
|
|
}
|