director/showHandlers/TwitchStreamHandler.cs
Adam R. Grey 47de14dca9 broke for a sec, back to working
fyi `dotnet restore` will say "no need :)", so you have to delete bin/ and obj/ when you need to dotnet restore
2021-09-01 01:16:29 -04:00

15 lines
422 B
C#

using System;
using director;
namespace ShowHandlers
{
public class TwitchStreamHandler : ShowHandler
{
public override void Handle(iCalHoopJumping.CalendarOccurrence evt)
{
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}");
}
}
}