import { normalized_config } from "./normalize-config.js"; import { get_run_details } from "./tfc-api-functions.mjs"; const my_config = normalized_config; const runid_provided = run_id => { return (run_id ? true : false); } const runidNotProvided = run_id => { return !runid_provided(run_id); } if(runidNotProvided(process.argv[2])){ throw new Error("RunID must be provided"); } const response = await get_run_details(my_config.base_url, process.argv.slice(2), my_config.token);