11 lines
191 B
Go
11 lines
191 B
Go
|
package ssmparameters
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"github.com/lmika/awstools/internal/ssm-browse/models"
|
||
|
)
|
||
|
|
||
|
type SSMProvider interface {
|
||
|
List(ctx context.Context) (*models.SSMParameters, error)
|
||
|
}
|