types

package
v0.0.4 Latest Latest
Warning

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

Go to latest
Published: Dec 6, 2023 License: MIT Imports: 0 Imported by: 0

Documentation

Overview

package types -- типы плагина

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type IStore

type IStore interface {
	// Put -- добавляет в хранилище значение по ключу
	Put(key string, value []byte) error
	// Get -- возвращает значение по ключу
	Get(key string) ([]byte, error)
	// Del -- удаляет значение по ключу
	Del(key string) error
	// Find -- возвращает список ключей по префиксу
	Find(prefix string) ([]string, error)
}

IStore -- интерфейс хранилища

Jump to

Keyboard shortcuts

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