mirror of
https://github.com/foomo/posh-providers.git
synced 2025-10-16 12:35:41 +00:00
12 lines
313 B
Go
12 lines
313 B
Go
package slack
|
|
|
|
import (
|
|
"github.com/foomo/posh-providers/onepassword"
|
|
)
|
|
|
|
type Config struct {
|
|
Token onepassword.Secret `json:"token" yaml:"token"`
|
|
Channels map[string]string `json:"channels" yaml:"channels"`
|
|
Webhooks map[string]onepassword.Secret `json:"webhooks" yaml:"webhooks"`
|
|
}
|