style: wrap long function signatures for golines
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
380f28b25f
commit
49d1aa53f8
2 changed files with 6 additions and 2 deletions
|
|
@ -44,6 +44,8 @@ func (a *channelManagerAdapter) SendPlaceholder(ctx context.Context, channel, ch
|
||||||
return a.inner.SendPlaceholder(ctx, channel, chatID)
|
return a.inner.SendPlaceholder(ctx, channel, chatID)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (a *channelManagerAdapter) DismissToolFeedback(ctx context.Context, channel, chatID string, outboundCtx *bus.InboundContext) {
|
func (a *channelManagerAdapter) DismissToolFeedback(
|
||||||
|
ctx context.Context, channel, chatID string, outboundCtx *bus.InboundContext,
|
||||||
|
) {
|
||||||
a.inner.DismissToolFeedback(ctx, channel, chatID, outboundCtx)
|
a.inner.DismissToolFeedback(ctx, channel, chatID, outboundCtx)
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -197,7 +197,9 @@ func clearTrackedToolFeedbackMessage(
|
||||||
// response (e.g., ResponseHandled tools) to stop orphaned animation goroutines.
|
// response (e.g., ResponseHandled tools) to stop orphaned animation goroutines.
|
||||||
// outboundCtx carries topic/thread info for channels that use scoped tracker
|
// outboundCtx carries topic/thread info for channels that use scoped tracker
|
||||||
// keys (e.g., Telegram forum topics); may be nil for non-topic channels.
|
// keys (e.g., Telegram forum topics); may be nil for non-topic channels.
|
||||||
func (m *Manager) DismissToolFeedback(ctx context.Context, channelName, chatID string, outboundCtx *bus.InboundContext) {
|
func (m *Manager) DismissToolFeedback(
|
||||||
|
ctx context.Context, channelName, chatID string, outboundCtx *bus.InboundContext,
|
||||||
|
) {
|
||||||
ch, ok := m.GetChannel(channelName)
|
ch, ok := m.GetChannel(channelName)
|
||||||
if !ok {
|
if !ok {
|
||||||
return
|
return
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue