director/showHandlers/TwitchStreamHandler.cs

15 lines
422 B
C#
Raw Normal View History

2021-08-21 00:55:33 -04:00
using System;
using director;
namespace ShowHandlers
{
public class TwitchStreamHandler : ShowHandler
{
public override void Handle(iCalHoopJumping.CalendarOccurrence evt)
{
2021-08-21 00:55:33 -04:00
Console.WriteLine("I am a twitch stream handler, it falls to me to...");
Console.WriteLine(" H A N D L E ");
Console.WriteLine($"current time is {DateTime.Now}");
}
}
}