Versions in this module Expand all Collapse all v0 v0.0.2 Jul 26, 2025 v0.0.1 Jul 23, 2025 Changes in this version + func BatchInsert(dbName string, entries map[string][]byte) error + func CreateDatabase(dbName string, secure bool) error + func GetEntry(dbName string, key string) ([]byte, error) + func InsertEntry(dbName string, key string, value []byte) error + func ListDatabases() ([]string, error) + func RemoveEntry(dbName string, key string) error + func UpdateConfigurations(config *Config) error + func UpdateEntry(dbName string, key string, value []byte) error + type Config struct + MetaFile string + MetaStore string + SecureNewDb bool + StorePath string + func ListConfigurations() (*Config, error) + type DbObject struct + Active bool + Created int64 + DbFile string + DbPath string + Deleted int64 + LastRotated int64 + Secure bool + type Event struct + Comment string + TSTamp int64 + Type EventType + type EventType int + const EventTypeConfigChange + const EventTypeCreate + const EventTypeDelete + const EventTypeRead + const EventTypeUpdate + const EventTypeWrite + type Storage struct