Skip to content

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-go

Quick 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))
}