mirror of
https://github.com/tiennm99/goclaw.git
synced 2026-08-08 10:21:25 +00:00
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.
15 lines
526 B
Go
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)
|