Current section

Files

Jump to
claude_code lib claude_code system_cmd default.ex
Raw

lib/claude_code/system_cmd/default.ex

defmodule ClaudeCode.SystemCmd.Default do
@moduledoc false
@behaviour ClaudeCode.SystemCmd
@impl true
def cmd(command, args, opts) do
System.cmd(command, args, opts)
end
end