Expose Hub method for server time for benchmarking (#2264)

This commit is contained in:
BrennanConroy 2018-05-14 08:35:23 -07:00 committed by GitHub
parent 7625bbcb6c
commit 36b7f72460
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -44,5 +44,10 @@ namespace BenchmarkServer.Hubs
{
// Dump the payload, we don't care
}
public DateTime GetCurrentTime()
{
return DateTime.UtcNow;
}
}
}