aboutsummaryrefslogtreecommitdiff
path: root/lib/osugiru/database.rb
diff options
context:
space:
mode:
authormms <git@sapka.me>2024-11-12 21:26:10 +0100
committermms <git@sapka.me>2024-11-12 21:26:10 +0100
commit955739e2a7be70e6abf7e95710ffe0f4a9c64481 (patch)
treec7b5256cf7fdd58b4785a521183f6776e1a2375e /lib/osugiru/database.rb
parent68d7eb07d88338f28c40a5ba68061a7f4e35f340 (diff)
feat: rename modules
Diffstat (limited to 'lib/osugiru/database.rb')
-rw-r--r--lib/osugiru/database.rb19
1 files changed, 19 insertions, 0 deletions
diff --git a/lib/osugiru/database.rb b/lib/osugiru/database.rb
new file mode 100644
index 0000000..d014c94
--- /dev/null
+++ b/lib/osugiru/database.rb
@@ -0,0 +1,19 @@
+# frozen_string_literal: true
+
+module Osugiru
+ class Database
+ attr_reader :db
+
+ def initialize(path:)
+ @db = ::Notmuch::Database.new(path)
+ end
+
+ def query(query)
+ db.query(query)
+ end
+
+ def search_messages(query)
+ query(query).search_messages
+ end
+ end
+end