https://github.com/nightwolf93/briskdotnet
BriskDotNet is a .net library for interact with the Brisk API
https://github.com/nightwolf93/briskdotnet
api brisk csharp dotnet-core library url-shortener wrapper-api
Last synced: 2 months ago
JSON representation
BriskDotNet is a .net library for interact with the Brisk API
- Host: GitHub
- URL: https://github.com/nightwolf93/briskdotnet
- Owner: nightwolf93
- Created: 2020-08-08T16:02:22.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-08-08T22:17:25.000Z (almost 6 years ago)
- Last Synced: 2025-07-10T16:30:45.181Z (12 months ago)
- Topics: api, brisk, csharp, dotnet-core, library, url-shortener, wrapper-api
- Language: C#
- Homepage:
- Size: 12.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README

# BriskDotNet
[](https://github.com/nightwolf93/brisk)
BriskDotNet is a .net library for interact with the Brisk API
## Documentation
First create a instance of BriskClient
```csharp
var client = new BriskClient("http://localhost:3000", "master", "changeme");
```
Create a link
```csharp
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/
## Nuget
```
dotnet add package BriskDotNet
```
https://www.nuget.org/packages/BriskDotNet/
## Build
```
make build
```
## Test
```
make test
```
## Authors
Nightwolf93