Files
2024-09-19 22:20:30 -04:00

13 lines
146 B
Go

package decisionTree
type Vertex struct {
ID string
Value string
}
type Edge struct {
SourceID string
TargetID string
Value string
}