(_moduleType, _name, _address, _factoryAddress, _archived, _paused)
| 596 | |
| 597 | async function getAllModules() { |
| 598 | function ModuleInfo(_moduleType, _name, _address, _factoryAddress, _archived, _paused) { |
| 599 | this.name = _name; |
| 600 | this.type = _moduleType; |
| 601 | this.address = _address; |
| 602 | this.factoryAddress = _factoryAddress; |
| 603 | this.archived = _archived; |
| 604 | this.paused = _paused; |
| 605 | } |
| 606 | |
| 607 | let modules = []; |
| 608 |
nothing calls this directly
no outgoing calls
no test coverage detected