Files
goclaw/internal/channels/bitrix24/destroyer_interface_test.go
Duy /zuey/andGitHub ef829c1ab4 fix(bitrix24): resolve PR 8-10 stack findings
Resolve the PR #8/#9/#10 stack on current dev, including Bitrix24 install callback hardening, migration renumbering, duplicate-domain fail-closed routing, UI textarea/mobile cleanup, and review hardening.
2026-05-22 20:53:01 +07:00

15 lines
526 B
Go

package bitrix24
import (
"github.com/nextlevelbuilder/goclaw/internal/channels"
)
// Compile-time guard: bitrix24.Channel must satisfy channels.ChannelDestroyer.
// If a future refactor drops Destroy() or changes its signature, this break
// surfaces at build time rather than as a silent zombie-bot regression in
// production (handlers would just skip the destroyer block via type
// assertion miss).
//
// Hat-tip to the existing channels.WebhookChannel guard pattern.
var _ channels.ChannelDestroyer = (*Channel)(nil)