rm common_option_mixin.rb

This commit is contained in:
0x1eef 2024-04-27 03:40:25 -03:00
parent c1b3498e99
commit 897260ce83

View file

@ -1,15 +0,0 @@
# frozen_string_literal: true
class Twenty::Command
module CommonOptionMixin
def self.included(mod)
mod.module_eval do
set_option "-d PATH",
"--database PATH",
"The path to an alternate SQLite database",
as: String,
default: nil
end
end
end
end