static void Main(string[] args)
{
// This whole API is made to be completely asynchronous.
// There are no blocking calls, hence the usage of event handling delegates.
// Looks ugly in this console example but it's perfect for UI based applications.
// Warning: The API KEY feature is still not implemented in Minus, so just pass in some "dummyKey"
// Pick one of these methods below to test the features independently
//TestAuth();
//TestGetItems();
//TestAll();
TestGuestUpload();
// Sleep a bit so you can check the output...
Thread.Sleep(40000);
}