- Fixed the '-local' flag to accept host and port - Added a '-debug' flag to accept a file to write debug log messages - Added some logic which will force the dark background flag on if MacOS is in dark mode
13 lines
356 B
Go
13 lines
356 B
Go
package ssmparameters
|
|
|
|
import (
|
|
"context"
|
|
"github.com/lmika/awstools/internal/ssm-browse/models"
|
|
)
|
|
|
|
type SSMProvider interface {
|
|
List(ctx context.Context, prefix string, maxCount int) (*models.SSMParameters, error)
|
|
Put(ctx context.Context, param models.SSMParameter, override bool) error
|
|
Delete(ctx context.Context, param models.SSMParameter) error
|
|
}
|