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!
- Host: GitHub
- URL: https://github.com/scientific-dev/bluefoxgo
- Owner: scientific-dev
- License: mit
- Created: 2021-03-16T18:54:40.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-03-16T19:07:23.000Z (over 5 years ago)
- Last Synced: 2024-11-25T17:48:13.590Z (over 1 year ago)
- Topics: api, bluefox, golang
- Language: Go
- Homepage: https://pkg.go.dev/github.com/Scientific-Guy/bluefoxgo
- Size: 6.84 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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)!