penguinmod-vm-prain / test /fixtures /dispatch-test-service.js
soiz1's picture
Upload folder using huggingface_hub
76cc654 verified
raw
history blame contribute delete
279 Bytes
class DispatchTestService {
returnFortyTwo () {
return 42;
}
doubleArgument (x) {
return 2 * x;
}
throwException () {
throw new Error('This is a test exception thrown by DispatchTest');
}
}
module.exports = DispatchTestService;