| 1234567891011121314151617181920 |
- package client
- const (
- DefaultBaseURL = "https://ntfy.sh"
- )
- type Config struct {
- DefaultHost string
- Subscribe []struct {
- Topic string
- Command string
- }
- }
- func NewConfig() *Config {
- return &Config{
- DefaultHost: DefaultBaseURL,
- Subscribe: nil,
- }
- }
|