10 lines
239 B
C#
10 lines
239 B
C#
namespace StatsdClient
|
|
{
|
|
public static class OutputChannelExtensions
|
|
{
|
|
public static void Send(this IOutputChannel outputChannel, string line)
|
|
{
|
|
outputChannel.SendAsync(line).Wait();
|
|
}
|
|
}
|
|
} |