/*
Create an Azure Function or Console exe that:
- Executes at startup and then every 15 seconds
- Queries a data store for events that are ready to kick-off
- Updates the event to indicate it is currently executing
For events that are currently executing:
- Each time the function runs, increment a count field on the event by 1
- When the count reaches 3, mark the event as completed
*/
using System;
public class Program
{
public static void Main()
Console.WriteLine("Hello World");
}