Created
May 27, 2018 18:26
-
-
Save thiagoloureiro/f1f19b0d1cf71d392712d84ba04a0510 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private static void Main() | |
{ | |
Console.Clear(); | |
Console.WriteLine("Raspberry Bot Started - Checking your builds"); | |
Console.WriteLine("Connecting to RabbitMQ"); | |
var objRabbit = new RabbitMQ.RabbitMq("AppVeyor"); | |
objRabbit.Connect(); | |
Console.WriteLine("Connected successfully with RabbitMQ!"); | |
Console.WriteLine("Press <ENTER> to exit"); | |
Console.ReadKey(); | |
Environment.Exit(0); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment