Import TechBot
[reactos.git] / irc / TechBot / TechBot.Library / ServiceOutput.cs
1 using System;
2
3 namespace TechBot.Library
4 {
5 public interface IServiceOutput
6 {
7 void WriteLine(string message);
8 }
9 }