flowfull-go ​
Official Go client for Flowfull backends.
Why use it ​
- Zero-dependency approach with the Go standard library
- Type-safe API with Go generics
- Built-in auth helpers and session handling
- Query builder and filter operators for common backend patterns
Install ​
bash
go get github.com/pubflow/flowfull-goQuick start ​
go
package main
import (
"fmt"
flowfull "github.com/pubflow/flowfull-go"
)
func main() {
client := flowfull.NewClient("https://api.example.com")
var users []map[string]interface{}
_, err := client.Get("/users", &users)
if err != nil {
panic(err)
}
fmt.Printf("Users: %d\n", len(users))
}Useful links ​
- Repository: github.com/pubflow/flowfull-go
- Package source (GitHub): github.com/pubflow/pbfl/tree/main/packages/flowfull-clients/flowfull-go
- Clients docs home: Flowfull Clients
- Request center: pubflow.com/requests