1
0
Fork 0
forked from mirrors/ntfy
ntfy/client/config.go

21 lines
268 B
Go
Raw Normal View History

2021-12-18 19:43:27 +00:00
package client
const (
DefaultBaseURL = "https://ntfy.sh"
)
type Config struct {
DefaultHost string
Subscribe []struct {
2021-12-18 21:12:36 +00:00
Topic string
Command string
2021-12-18 19:43:27 +00:00
}
}
func NewConfig() *Config {
return &Config{
DefaultHost: DefaultBaseURL,
Subscribe: nil,
}
}