director/showHandlers/TwitchStreamHandler.cs

16 lines
523 B
C#
Raw Normal View History

2021-08-21 00:55:33 -04:00
using System;
using director;
namespace ShowHandlers
{
public class TwitchStreamHandler : ShowHandler
{
protected override TimeSpan AgentsRespondingBuffer { get { return TimeSpan.FromHours(1); } }
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}");
}
}
}