Files
UnrealEngineUWP/Engine/Plugins/VirtualProduction/RemoteControlWebInterface/WebApp/Server/index.ts

8 lines
135 B
TypeScript
Raw Normal View History

import { App } from './src';
const app = new App();
app.start()
.catch(err => {
console.log('Error:', err.message);
});