Files
WebGPU-Bitonic-Sorter/framework/Request.js

11 lines
201 B
JavaScript
Raw Normal View History

2026-01-04 13:21:35 +01:00
export class Request {
constructor( method, payload = {} ) {
this.method = method; // method name to call on Controller, e.g. "Ping"
this.payload = payload; // any data for the method
}
}