(id)
| 39 | } |
| 40 | |
| 41 | async function detail(id) { |
| 42 | try { |
| 43 | return await detailContent(id); |
| 44 | } catch (e) { |
| 45 | await log('detail:' + e.message + ' line:' + e.lineNumber); |
| 46 | } |
| 47 | } |
| 48 | |
| 49 | async function play(flag, id, flags) { |
| 50 | try { |
nothing calls this directly
no test coverage detected