项目文件夹

文件
wehub-resource-sync 9f2e1cd2af
Ruby / Ruby 4.0.5 (push) Failing after 5m13s
Ruby / Ruby 3.3.4 (push) Failing after 5m43s
Ruby / Ruby 2.6.8 (push) Failing after 16m2s
chore: import upstream snapshot with attribution
2026-07-13 12:33:07 +08:00

14 行
437 B
Ruby

# frozen_string_literal: true
require_relative "ui_interface"
module Clacky
# A UI controller that swallows every event. Used for detached/background
# subagents whose intermediate output must never reach a real UI stream
# (e.g. the WebUI chat transcript). All UIInterface methods are inherited
# as no-ops, so nothing this agent emits is broadcast anywhere.
class NullUIController
include Clacky::UIInterface
end
end