File: doc.go

package info (click to toggle)
golang-github-nicholas-fedor-shoutrrr 0.12.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,680 kB
  • sloc: sh: 74; makefile: 58
file content (15 lines) | stat: -rw-r--r-- 825 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Package signal provides functionality to send notifications via Signal Messenger
// through REST API servers that wrap the signal-cli command-line interface.
//
// This service supports sending text messages and base64-encoded attachments to
// individual phone numbers and Signal groups. Authentication supports both HTTP
// Basic Auth and Bearer tokens for compatibility with different API servers.
//
// It requires a Signal API server (such as signal-cli-rest-api or secured-signal-api)
// to be running and configured with a registered Signal account.
//
// URL format: signal://[user:pass@]host:port/source_phone/recipient1/recipient2
// URL format: signal://host:port/source_phone/recipient1/recipient2?token=apikey
//
// For setup instructions and API server options, see the service documentation.
package signal