api.go 149 B

12345678910
  1. package amazon
  2. //go:generate mockgen -destination=./mock/api.go -package=mock . API
  3. type API interface {
  4. downAPI
  5. upAPI
  6. convertAPI
  7. secretsAPI
  8. }