data

package
v0.3.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 16, 2026 License: AGPL-3.0 Imports: 8 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Client

type Client struct {
	// contains filtered or unexported fields
}

Client is the Wails-facing client for the plugin data store.

func NewClient

func NewClient(controller Controller) *Client

NewClient creates a new data store client.

func (*Client) Delete

func (c *Client) Delete(pluginID, key string) error

func (*Client) Get

func (c *Client) Get(pluginID, key string) (any, error)

func (*Client) Keys

func (c *Client) Keys(pluginID string) ([]string, error)

func (*Client) Set

func (c *Client) Set(pluginID, key string, value any) error

type Controller

type Controller interface {
	Get(pluginID, key string) (any, error)
	Set(pluginID, key string, value any) error
	Delete(pluginID, key string) error
	Keys(pluginID string) ([]string, error)
}

Controller provides a JSON key-value store for plugins to persist arbitrary data. Each key is stored as a separate JSON file under ~/.omniview/plugins/{pluginID}/data/.

func NewController

func NewController(logger logging.Logger) Controller

NewController creates a new data store controller.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL