aboutsummaryrefslogtreecommitdiff
path: root/lib/some/database.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/some/database.rb')
-rw-r--r--lib/some/database.rb19
1 files changed, 0 insertions, 19 deletions
diff --git a/lib/some/database.rb b/lib/some/database.rb
deleted file mode 100644
index d481dd5..0000000
--- a/lib/some/database.rb
+++ /dev/null
@@ -1,19 +0,0 @@
-# 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
-
- def search_messages(query)
- query(query).search_messages
- end
- end
-end