| 267 | } |
| 268 | |
| 269 | type commandTokenSource struct { |
| 270 | cmd string |
| 271 | args []string |
| 272 | tokenKey string |
| 273 | expiryKey string |
| 274 | timeFmt string |
| 275 | } |
| 276 | |
| 277 | func newCmdTokenSource(cmd string, args []string, tokenKey, expiryKey, timeFmt string) *commandTokenSource { |
| 278 | if len(timeFmt) == 0 { |
nothing calls this directly
no outgoing calls
no test coverage detected