1
0
Fork 0
mirror of https://github.com/binwiederhier/ntfy.git synced 2024-08-20 10:13:52 +02:00
ntfy/client/config.go
2021-12-19 14:27:26 -05:00

24 lines
434 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
}
}
// NewConfig creates a new Config struct for a Client
func NewConfig() *Config {
return &Config{
DefaultHost: DefaultBaseURL,
Subscribe: nil,
}
}