()
| 15 | ) |
| 16 | |
| 17 | func main() { |
| 18 | |
| 19 | // Parse the connection file. |
| 20 | flag.Parse() |
| 21 | if flag.NArg() < 1 { |
| 22 | log.Fatalln("Need a command line argument specifying the connection file.") |
| 23 | } |
| 24 | |
| 25 | // Run the kernel. |
| 26 | runKernel(flag.Arg(0)) |
| 27 | } |
nothing calls this directly
no test coverage detected