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