BriskDotNet is a .net library for interact with the Brisk API
First create a instance of BriskClient
var client = new BriskClient("http://localhost:3000", "master", "changeme");
Create a link
var link = await client.CreateLink(new CreateLinkRequest("https://github.com/nightwolf93/brisk", 30000, 5));
You can check the official brisk api too : https://nico-style931.gitbook.io/brisk/
dotnet add package BriskDotNet
https://www.nuget.org/packages/BriskDotNet/
make build
make test
Nightwolf93