Initial commit

This commit is contained in:
2025-11-17 15:06:39 +01:00
parent 2015516eca
commit 4d2432a1c2
91 changed files with 5074894 additions and 2 deletions

11
framework/Request.js Normal file
View File

@@ -0,0 +1,11 @@
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
}
}