dynamo-browse/internal/ssm-browse/models/models.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

12 lines
144 B
Go

package models
type SSMParameters struct {
Items []SSMParameter
NextToken string
}
type SSMParameter struct {
Name string
Value string
}