data.go 148 Bytes
Newer Older
1 2 3 4 5 6 7
package types

// AsyncLoadResult is sent once over the channel returned by an async load.
type AsyncLoadResult struct {
	Data []byte
	Err  error
}