Некоторые проверки не удались
CI / test (push) Successful in 2m5s
Docker / Build and publish worker image (push) Failing after 31s
14 строки
232 B
Go
14 строки
232 B
Go
package sender
|
|
|
|
import (
|
|
"errors"
|
|
|
|
"rocketgit.ru/rsmon/worker/app/models"
|
|
)
|
|
|
|
// RunVoice provides functionality.
|
|
func RunVoice(message *models.Message) error {
|
|
_ = message
|
|
return errors.New("voice notifications are disabled")
|
|
}
|