mirror of
https://github.com/binwiederhier/ntfy.git
synced 2024-11-22 19:17:35 +03:00
25 lines
486 B
Go
25 lines
486 B
Go
package client
|
|
|
|
const (
|
|
// DefaultBaseURL is the base URL used to expand short topic names
|
|
DefaultBaseURL = "https://ntfy.sh"
|
|
)
|
|
|
|
// Config is the config struct for a Client
|
|
type Config struct {
|
|
DefaultHost string
|
|
Subscribe []struct {
|
|
Topic string
|
|
Command string
|
|
// If []map[string]string TODO This would be cool
|
|
}
|
|
}
|
|
|
|
// NewConfig creates a new Config struct for a Client
|
|
func NewConfig() *Config {
|
|
return &Config{
|
|
DefaultHost: DefaultBaseURL,
|
|
Subscribe: nil,
|
|
}
|
|
}
|