()
| 27 | ) |
| 28 | |
| 29 | func init() { |
| 30 | var err error |
| 31 | funcs, err = readQuerierFunctions() |
| 32 | if err != nil { |
| 33 | panic(err) |
| 34 | } |
| 35 | funcByName = map[string]struct{}{} |
| 36 | for _, f := range funcs { |
| 37 | funcByName[f.Name] = struct{}{} |
| 38 | } |
| 39 | } |
| 40 | |
| 41 | func main() { |
| 42 | err := run() |
nothing calls this directly
no test coverage detected