diff options
author | mms <git@sapka.me> | 2024-11-07 14:57:41 +0100 |
---|---|---|
committer | mms <git@sapka.me> | 2024-11-07 14:57:41 +0100 |
commit | acc8415d7109e8fb45bbfcd8cf545ebcf5b5d16a (patch) | |
tree | 1c8b1ec2efbd7602fa972aa7dbd6e8baa63ef515 /lib/some/database.rb |
init spike
Diffstat (limited to 'lib/some/database.rb')
-rw-r--r-- | lib/some/database.rb | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/lib/some/database.rb b/lib/some/database.rb new file mode 100644 index 0000000..5595a41 --- /dev/null +++ b/lib/some/database.rb @@ -0,0 +1,15 @@ +# frozen_string_literal: true + +module Some + class Database + attr_reader :db + + def initialize(path:) + @db = ::Notmuch::Database.new(path) + end + + def query(query) + db.query(query) + end + end +end |