2021-11-08 11:54:22 -08:00
|
|
|
package pool
|
|
|
|
|
|
|
|
|
|
// This program generates mocks. It can be invoked by running:
|
|
|
|
|
//
|
|
|
|
|
// make mock
|
|
|
|
|
//
|
2021-11-08 22:21:13 -08:00
|
|
|
|
2021-12-09 22:52:03 -08:00
|
|
|
//go:generate mockgen -source=interfaces.go -package=pool -destination=mock_interfaces.go
|
|
|
|
|
|
2021-11-08 22:21:13 -08:00
|
|
|
//go:generate mockgen -source=sidecar/interfaces.go -package=sidecar -destination=sidecar/mock_interfaces.go
|
2021-12-09 22:52:03 -08:00
|
|
|
|
2021-11-08 22:21:13 -08:00
|
|
|
//go:generate mockgen -source=internal/test/interfaces.go -package=test -destination=internal/test/mock_interfaces.go
|
2021-12-09 22:52:03 -08:00
|
|
|
|
2021-12-09 16:53:36 -08:00
|
|
|
//go:generate mockgen -source=account/interfaces.go -package=account -destination=account/mock_interfaces.go
|
2021-12-01 21:16:38 -08:00
|
|
|
//go:generate mockgen -source=account/watcher/interfaces.go -package=watcher -destination=account/watcher/mock_interface_test.go
|
2021-12-09 22:52:03 -08:00
|
|
|
|
2021-12-09 16:13:08 -08:00
|
|
|
//go:generate mockgen -source=order/interfaces.go -package=order -destination=order/mock_interfaces.go
|