plugin.go 204 B

1234567891011121314
  1. package main
  2. type Plugin interface {
  3. Type() string
  4. Parse(*Node) error
  5. Update(*Node) error
  6. }
  7. func PlugToProfile(p Plugin) *Profile {
  8. if p.Type() != "Profile" {
  9. return nil
  10. }
  11. return p.(*Profile)
  12. }