()
| 384 | } |
| 385 | |
| 386 | func getUsageForCommonCommands() string { |
| 387 | var builder strings.Builder |
| 388 | builder.WriteString("create Create a new Toolbx container\n") |
| 389 | builder.WriteString("enter Enter an existing Toolbx container\n") |
| 390 | builder.WriteString("list List all existing Toolbx containers and images\n") |
| 391 | |
| 392 | usage := builder.String() |
| 393 | return usage |
| 394 | } |
| 395 | |
| 396 | func poll(pollFn pollFunc, eventFD int32, fds ...int32) error { |
| 397 | if len(fds) == 0 { |
no outgoing calls
no test coverage detected
searching dependent graphs…