github.com/15mga/kiwi@v0.0.2-0.20240324021231-b95d5c3ac751/graph/plugin.go (about)

     1  package graph
     2  
     3  type IPlugin interface {
     4  	OnStart(g IGraph)
     5  	OnAddNode(g IGraph, nd INode)
     6  	OnAddSubGraph(g IGraph, sg ISubGraph)
     7  	OnAddLink(g IGraph, lnk ILink)
     8  	OnAddIn(in IIn)
     9  	OnAddOut(out IOut)
    10  }