A C# SDK for working with Gitkraken Glo Boards
There are a couple ways that you can set your Personal Access Token. You can set it in the Environment variable named GlosharpToken or you can store it in the config.json file.
$env:GlosharpPat=your_personal_tokenor
cp config-example.json config.jsonNote: Glosharp cannot work with OAuth just yet.
var config = new Connection(new Configuration());
var glo = new GloClient(config);
var boards = glo.Board.GetAllForCurrent();