base.go 134 B

12345678910
  1. package notifiers
  2. type NotifierBase struct {
  3. Name string
  4. Type string
  5. }
  6. func (n *NotifierBase) GetType() string {
  7. return n.Type
  8. }