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