8 lines
107 B
Go
8 lines
107 B
Go
package node
|
|
|
|
type Node interface {
|
|
Name() string
|
|
Attributes() map[string]interface{}
|
|
Walk(v Visitor)
|
|
}
|