Init with c ext

This commit is contained in:
2025-03-14 17:46:02 +00:00
commit d47b8ca684
21 changed files with 414 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
# frozen_string_literal: true
require_relative "mcp/version"
require_relative "mcp/mcp"
module Mcp
class Error < StandardError; end
# Your code goes here...
end
+5
View File
@@ -0,0 +1,5 @@
# frozen_string_literal: true
module Mcp
VERSION = "0.1.0"
end