14 lines
330 B
Go
14 lines
330 B
Go
package types
|
|
|
|
// LoadInput represents the input for the load function
|
|
type LoadInput struct {
|
|
Database []byte `json:"database"`
|
|
}
|
|
|
|
// LoadOutput represents the output of the load function
|
|
type LoadOutput struct {
|
|
Success bool `json:"success"`
|
|
DID string `json:"did,omitempty"`
|
|
Error string `json:"error,omitempty"`
|
|
}
|