aboutsummaryrefslogtreecommitdiff
path: root/src/guff.cr
diff options
context:
space:
mode:
Diffstat (limited to 'src/guff.cr')
-rw-r--r--src/guff.cr21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/guff.cr b/src/guff.cr
index e0f97ad..c1acd8b 100644
--- a/src/guff.cr
+++ b/src/guff.cr
@@ -1325,27 +1325,6 @@ module Guff
end
end
- class DatabasePair
- getter :ro, :rw
-
- def initialize(
- path : String,
- debug : Bool = false
- )
- @ro = Database.new(
- path: path,
- read_only: true,
- debug: debug
- )
-
- @rw = Database.new(
- path: path,
- read_only: false,
- debug: debug
- )
- end
- end
-
class Context
getter :config, :dbs