refactor(channels): remove redundant setRunning method from BaseChannel

This commit is contained in:
Hoshina
2026-02-20 23:52:41 +08:00
parent 952ae91501
commit 420eadc2ba
-4
View File
@@ -98,10 +98,6 @@ func (c *BaseChannel) HandleMessage(senderID, chatID, content string, media []st
c.bus.PublishInbound(msg)
}
func (c *BaseChannel) setRunning(running bool) {
c.running = running
}
func (c *BaseChannel) SetRunning(running bool) {
c.running = running
}