module RaspbergBootlogStore
RaspbergBootlogStore — RabbotDb persistence for boot log entries.
Constants
- KEY
- PLUGIN
Public Instance Methods
Source
# File lib/raspberg_bootlog_store.rb, line 10 def load(store:) store.get_plugin_json(plugin: PLUGIN, key: KEY, default: []) end
Source
# File lib/raspberg_bootlog_store.rb, line 14 def save(entries, store:) store.set_plugin_json(plugin: PLUGIN, key: KEY, value: entries) end