Kevin Cotugno
f4fa7f24b3
This begin this code for the validator. Currently this just build an array of the starting and ending missing trades. TODO: Download the missing trades
9 lines
108 B
Go
9 lines
108 B
Go
package tacitus
|
|
|
|
type Results interface {
|
|
Next() bool
|
|
Value() interface{}
|
|
Error() error
|
|
Close() error
|
|
}
|