NewModel creates an empty model.
()
| 130 | |
| 131 | // NewModel creates an empty model. |
| 132 | func NewModel() Model { |
| 133 | m := make(Model) |
| 134 | |
| 135 | return m |
| 136 | } |
| 137 | |
| 138 | // NewModelFromFile creates a model from a .CONF file. |
| 139 | func NewModelFromFile(path string) (Model, error) { |
no outgoing calls
searching dependent graphs…