summaryrefslogtreecommitdiffhomepage
path: root/lib/dispatch/tool/files.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/dispatch/tool/files.rb')
-rw-r--r--lib/dispatch/tool/files.rb15
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"