Olimpiadas-INET-2024-Escuela-Tecnica-21 / fase1_backend

async function should have await expression JS-0116
Bug risk
Minor
1 occurrence in this check
Found async function without any await expressions
 6    constructor(){
 7        super(TestController, entity)
 8    }
 9    static async sayHi(){10        try{11            return entity.sayHello()12        }13        catch(error){14            return 'hubo error xd'15        }16    }17}
18
19export default TestController