dynamo-browse/internal/ssm-browse/services/ssmparameters/iface.go
Leon Mika f6f06eb22d ssm-browse: added cd command
Also came up with an approach for dealing with commands that will probably work with contexts
2022-03-29 10:29:25 +11:00

11 lines
224 B
Go

package ssmparameters
import (
"context"
"github.com/lmika/awstools/internal/ssm-browse/models"
)
type SSMProvider interface {
List(ctx context.Context, prefix string, nextToken string) (*models.SSMParameters, error)
}