11 lines
202 B
C#
11 lines
202 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace StatsdClient
|
|
{
|
|
internal sealed class NullOutputChannel : IOutputChannel
|
|
{
|
|
public async Task SendAsync(string line)
|
|
{
|
|
}
|
|
}
|
|
} |