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/database_client.go

11 lines
226 B
Go
Raw Permalink Normal View History

2017-09-27 20:38:25 -07:00
package tacitus
type DatabaseClientService interface {
Open() error
Close() error
TradeService() TradeService
2017-10-05 21:53:02 -07:00
ConfirmationService() ConfirmationService
2017-10-08 11:19:42 -07:00
AggregationService() AggregationService
2017-09-27 20:38:25 -07:00
SetLogger(logger Logger)
}