This repository has been archived on 2022-11-30. You can view files and clone it, but cannot push or open issues or pull requests.
tacitus/results.go
Kevin Cotugno f4fa7f24b3 watcher: inital validator
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
2017-09-27 23:23:34 -07:00

9 lines
108 B
Go

package tacitus
type Results interface {
Next() bool
Value() interface{}
Error() error
Close() error
}