Files
worker/internal/sender/voice.go
Gleb Tv 2c7a0236da feat: publish standalone worker
Separate worker packaging and service lifecycle from the control plane.
2026-07-13 17:55:14 +03:00

14 строки
227 B
Go

package sender
import (
"errors"
"rsgit.ru/rsmon/rsmon/app/models"
)
// RunVoice provides functionality.
func RunVoice(message *models.Message) error {
_ = message
return errors.New("voice notifications are disabled")
}