An open API service indexing awesome lists of open source software.

https://github.com/scientific-dev/bluefoxgo

An api wrapper for bluefox written in golang!
https://github.com/scientific-dev/bluefoxgo

api bluefox golang

Last synced: 5 months ago
JSON representation

An api wrapper for bluefox written in golang!

Awesome Lists containing this project

README

          

# Bluefoxgo

Bluefoxgo is an api wrapper for bluefox api! Easy and beginner friendly!

> Bluefoxgo is currently under beta stage. Incase if you have found any kind of bugs kindly make an issue or make an pull request to improve us :)

## Quick example

```go
package main

import (
"fmt"
"github.com/Scientific-Guy/bluefoxgo"
)

func main(){
client := bluefox.NewClient("TOKEN")
server, err := client.GetServer("ID")

if err != nil{
fmt.Println("Failed fetching server details: " + err.Error())
return
}

fmt.Println("Success!", server);
}
```

## Docs

You can view the full documentation on [`pkg.go.dev`](https://pkg.go.dev/github.com/Scientific-Guy/bluefoxgo)!