namespace Remotely.Server.Extensions;
public static class IApplicationBuilderExtensions
{
///
///
/// Maps Razor pages and SignalR hubs. The remote control viewer page will be mapped
/// to path "/Viewer", the desktop hub to "/hubs/desktop", and viewer hub
/// to "/hubs/viewer".
///
///
/// Important: This must be called after "app.UseRouting()".
///
///
///
///
public static IApplicationBuilder UseRemoteControlServer(this IApplicationBuilder app)
{
return app;
}
}