5 lines
87 B
Go
5 lines
87 B
Go
package domain
|
|
|
|
type Formatter interface {
|
|
Format(node *CustomNode) (string, error)
|
|
}
|