e63dc12dff
Logger and exceptionManager
18 lines
292 B
C#
18 lines
292 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using Microsoft.AspNet.SignalR;
|
|
using Microsoft.AspNet.SignalR.Hubs;
|
|
|
|
namespace Step.Controllers
|
|
{
|
|
public class DataHub : Hub
|
|
{
|
|
public void Hello()
|
|
{
|
|
Clients.All.hello("Ciao");
|
|
}
|
|
}
|
|
}
|