mirror of
https://github.com/wassname/GarageServer.IO.git
synced 2026-07-08 00:10:05 +08:00
7 lines
145 B
JavaScript
7 lines
145 B
JavaScript
exports = module.exports = History;
|
|
|
|
function History (state, executionTime) {
|
|
this.state = state;
|
|
this.executionTime = executionTime;
|
|
}
|