diff options
| author | Adam Malczewski <[email protected]> | 2026-03-31 00:50:17 +0900 |
|---|---|---|
| committer | Adam Malczewski <[email protected]> | 2026-03-31 00:50:17 +0900 |
| commit | 7221a9d38fcd29d89794bc3041f11c5358b3155e (patch) | |
| tree | 6f33ee6d9cbad1f891b034c3c05e9fbce7b73445 /lib/dispatch/tools | |
| download | dispatch-tools-interface-main.tar.gz dispatch-tools-interface-main.zip | |
Diffstat (limited to 'lib/dispatch/tools')
| -rw-r--r-- | lib/dispatch/tools/interface.rb | 12 | ||||
| -rw-r--r-- | lib/dispatch/tools/interface/version.rb | 9 |
2 files changed, 21 insertions, 0 deletions
diff --git a/lib/dispatch/tools/interface.rb b/lib/dispatch/tools/interface.rb new file mode 100644 index 0000000..7c88b37 --- /dev/null +++ b/lib/dispatch/tools/interface.rb @@ -0,0 +1,12 @@ +# frozen_string_literal: true + +require_relative "interface/version" + +module Dispatch + module Tools + module Interface + class Error < StandardError; end + # Your code goes here... + end + end +end diff --git a/lib/dispatch/tools/interface/version.rb b/lib/dispatch/tools/interface/version.rb new file mode 100644 index 0000000..eba50bf --- /dev/null +++ b/lib/dispatch/tools/interface/version.rb @@ -0,0 +1,9 @@ +# frozen_string_literal: true + +module Dispatch + module Tools + module Interface + VERSION = "0.1.0" + end + end +end |
