Harden initial framework skeleton

This commit is contained in:
2026-05-02 11:44:15 -05:00
parent bec784f1ec
commit 96540cebd4
19 changed files with 194 additions and 75 deletions

View File

@@ -3,6 +3,8 @@ package notify
import "context"
// TODO: implement a real notification backend (email/webhook/etc.).
// Sender is the adapter boundary for notifications.
type Sender interface {
Send(ctx context.Context, req SendRequest) (SendResult, error)