()
| 13 | let isNewDelegate = false; |
| 14 | |
| 15 | async function executeApp() { |
| 16 | |
| 17 | common.logAsciiBull(); |
| 18 | console.log("***********************************************"); |
| 19 | console.log("Welcome to the Command-Line Permission Manager."); |
| 20 | console.log("***********************************************"); |
| 21 | console.log("Issuer Account: " + Issuer.address + "\n"); |
| 22 | |
| 23 | await setup(); |
| 24 | |
| 25 | try { |
| 26 | await selectST(); |
| 27 | await addPermissionModule(); |
| 28 | await changePermissionStep(); |
| 29 | } catch (err) { |
| 30 | console.log(err); |
| 31 | return; |
| 32 | } |
| 33 | }; |
| 34 | |
| 35 | async function setup(){ |
| 36 | try { |
no test coverage detected