(name string)
| 34 | } |
| 35 | |
| 36 | func getDataFile(name string) string { |
| 37 | content, err := env.Data.ReadFile("data/" + name) |
| 38 | if err != nil { |
| 39 | lib.Err(err) |
| 40 | } |
| 41 | return string(content) |
| 42 | } |
| 43 | |
| 44 | // TODO: interactive init, to ask for |
| 45 | // project dir |
no outgoing calls
no test coverage detected