Add RFA backend

This commit is contained in:
Zoë Hoekstra
2022-07-30 16:19:22 +02:00
parent 74f3d6507f
commit d20f621b47
6 changed files with 308 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
import { Remote } from "./Remote";
class RemoteFileAPI {
server : Remote;
constructor(){
this.server = new Remote("localhost", 12525);
return;
}
enable() : void {
this.server.startConnection();
}
}
export const RFA = new RemoteFileAPI;