(ctx context.Context)
| 400 | } |
| 401 | |
| 402 | func stdinIsTerminal(ctx context.Context) bool { |
| 403 | file, ok := stdinReader(ctx).(*os.File) |
| 404 | return ok && termutil.IsTerminal(file) |
| 405 | } |
| 406 | |
| 407 | func startAuthManageServer(ctx context.Context, options googleauth.ManageServerOptions) error { |
| 408 | if runtime, ok := app.FromContext(ctx); ok && runtime.Auth.StartManageServer != nil { |
no test coverage detected