plugin.go 309 B

123456789101112131415161718
  1. package main
  2. // A plugin has Parse and Update
  3. type Plugin interface {
  4. Type() string
  5. Parse(*Node) error
  6. Update(*Node) error
  7. }
  8. // Convert func
  9. //
  10. // Converts a Plugin into a Profile (only if it can)
  11. func PlugToProfile(p Plugin) *Profile {
  12. if p.Type() != "Profile" {
  13. return nil
  14. }
  15. return p.(*Profile)
  16. }