diff --git a/README.md b/README.md index 3ebc0d6..2911e83 100644 --- a/README.md +++ b/README.md @@ -20,24 +20,24 @@ Usage ```go package main -​ + import ( -"fmt" -​ -"github.com/supabase/postgrest-go" + "fmt" + + "github.com/supabase/postgrest-go" ) -​ + func main() { client := postgrest.NewClient("http://localhost:3000", "", nil) if client.ClientError != nil { panic(client.ClientError) } - ​ + result := client.Rpc("add_them", "", map[string]int{"a": 12, "b": 3}) if client.ClientError != nil { panic(client.ClientError) } - ​ + fmt.Println(result) } ```