diff options
| author | Adam Malczewski <[email protected]> | 2026-03-31 23:10:45 +0900 |
|---|---|---|
| committer | Adam Malczewski <[email protected]> | 2026-03-31 23:10:45 +0900 |
| commit | 57c56daf5906442dacc15951c9b3405f89309839 (patch) | |
| tree | e76890119c0e47acb48f8585222b7a2f5e22df56 /lib/dispatch/tool/files.rb | |
| parent | 25488d32336e05b69a41391cc7b5153478d3cc8a (diff) | |
| download | dispatch-tool-files-dev.tar.gz dispatch-tool-files-dev.zip | |
impdev
Diffstat (limited to 'lib/dispatch/tool/files.rb')
| -rw-r--r-- | lib/dispatch/tool/files.rb | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/lib/dispatch/tool/files.rb b/lib/dispatch/tool/files.rb index b7418c3..50e1a58 100644 --- a/lib/dispatch/tool/files.rb +++ b/lib/dispatch/tool/files.rb @@ -1,12 +1,25 @@ # frozen_string_literal: true +require "dispatch/tools/interface" +require "fileutils" require_relative "files/version" module Dispatch module Tool module Files class Error < StandardError; end - # Your code goes here... + class SandboxError < Error; end + class FileNotFoundError < Error; end + class FileExistsError < Error; end end end end + +require_relative "files/sandbox" +require_relative "files/read_file" +require_relative "files/write_file" +require_relative "files/edit_file" +require_relative "files/create_file" +require_relative "files/list_files" +require_relative "files/search_files" +require_relative "files/register" |
