Versions in this module Expand all Collapse all v0 v0.1.14 Aug 27, 2020 Changes in this version + type Secret struct + Description string + ID string + Labels map[string]string + Name string + func NewSecret(name, username, password, description string) Secret + func (s Secret) GetCredString() (string, error) + func (s Secret) ToJSON() (string, error) + type Service interface + CreateSecret func(ctx context.Context, secret Secret) (string, error) + DeleteSecret func(ctx context.Context, id string, recover bool) error + InspectSecret func(ctx context.Context, id string) (Secret, error) + ListSecrets func(ctx context.Context) ([]Secret, error)