Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type VarStorage ¶
type VarStorage interface { Store(ctx context.Context, key string, scope ...string) (io.WriteCloser, error) Retrieve(ctx context.Context, key string, scope ...string) (VarReader, error) List(ctx context.Context, scope ...string) ([]VarInfo, error) Delete(ctx context.Context, key string, scope ...string) error DeleteAllInScope(ctx context.Context, scope ...string) error io.Closer }
func NewPostgresVarStorage ¶
func NewPostgresVarStorage(database string) (VarStorage, error)
Click to show internal directories.
Click to hide internal directories.