diff options
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/dispatch/tool/files.rb | 12 | ||||
| -rw-r--r-- | lib/dispatch/tool/files/version.rb | 9 |
2 files changed, 21 insertions, 0 deletions
diff --git a/lib/dispatch/tool/files.rb b/lib/dispatch/tool/files.rb new file mode 100644 index 0000000..b7418c3 --- /dev/null +++ b/lib/dispatch/tool/files.rb @@ -0,0 +1,12 @@ +# frozen_string_literal: true + +require_relative "files/version" + +module Dispatch + module Tool + module Files + class Error < StandardError; end + # Your code goes here... + end + end +end diff --git a/lib/dispatch/tool/files/version.rb b/lib/dispatch/tool/files/version.rb new file mode 100644 index 0000000..4d26d29 --- /dev/null +++ b/lib/dispatch/tool/files/version.rb @@ -0,0 +1,9 @@ +# frozen_string_literal: true + +module Dispatch + module Tool + module Files + VERSION = "0.1.0" + end + end +end |
