feat: Scaffolding bot

This commit is contained in:
2025-07-26 17:18:41 -07:00
parent 4acfd33eae
commit 8d3bcbc01d
10 changed files with 443 additions and 18 deletions
+2
View File
@@ -2,6 +2,8 @@ package notifier
// Notifier defines the interface for sending notifications.
type Notifier interface {
// Notify sends a message to a specific chat ID.
SendTo(chatID int64, message string) error
// Broadcast sends a message to a given list of chat IDs.
Broadcast(chatIDs []int64, message string) error
}