forked from TrueCloudLab/neoneo-go
8 lines
181 B
Go
8 lines
181 B
Go
package transaction
|
|
|
|
// InOut represents an Input bound to its corresponding Output which is a useful
|
|
// combination for many purposes.
|
|
type InOut struct {
|
|
In Input
|
|
Out Output
|
|
}
|