.Net wrapper for services hosted on https://api.systemexit.co.uk/ & https://kitsu.systemexit.co.uk/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
SysEx.Net/SysEx.Net.Tests/Program.cs

34 lines
718 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using SysEx.Net;
namespace SysEx.Net.Tests
{
class Program
{
static void Main(string[] args) => MainTask().GetAwaiter().GetResult();
static async Task MainTask()
{
try
{
var client = new SysExClient();
var resp = await client.GetWeebActionGifAsync(GifType.Slap);
Console.WriteLine(resp);
Console.ReadLine();
}
catch(Exception ex)
{
Console.WriteLine(ex);
}
await Task.Delay(-1);
}
}
}