(value string)
| 49 | } |
| 50 | |
| 51 | func (a *ArrayArg) Set(value string) error { |
| 52 | *a = append(*a, value) |
| 53 | return nil |
| 54 | } |
| 55 | |
| 56 | func (s *Session) FormatArgs(args []string) []string { |
| 57 | formatted := make([]string, len(args)) |
nothing calls this directly
no outgoing calls
no test coverage detected