(
gsettings: &GlobalSettings,
opts: SubmitJobConfOpts,
)
| 70 | } |
| 71 | |
| 72 | async fn command_job_open( |
| 73 | gsettings: &GlobalSettings, |
| 74 | opts: SubmitJobConfOpts, |
| 75 | ) -> anyhow::Result<()> { |
| 76 | let mut session = get_client_session(gsettings.server_directory()).await?; |
| 77 | open_job(gsettings, &mut session, opts).await |
| 78 | } |
| 79 | |
| 80 | async fn command_submit_job_file( |
| 81 | gsettings: &GlobalSettings, |
no test coverage detected