mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
11 lines
134 B
Go
11 lines
134 B
Go
package notifiers
|
|
|
|
type NotifierBase struct {
|
|
Name string
|
|
Type string
|
|
}
|
|
|
|
func (n *NotifierBase) GetType() string {
|
|
return n.Type
|
|
}
|