Plan interface.
| 10 | |
| 11 | // Plan interface. |
| 12 | type Plan interface { |
| 13 | Build() error |
| 14 | Type() PlanType |
| 15 | JSON() string |
| 16 | Size() int |
| 17 | } |
| 18 | |
| 19 | // PlanTree is a container for all plans |
| 20 | type PlanTree struct { |
no outgoing calls
no test coverage detected