Skip to content

Commit

Permalink
typo fix readme
Browse files Browse the repository at this point in the history
  • Loading branch information
yusufpapurcu authored Jun 17, 2021
1 parent d614da5 commit 62931b1
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
```
Expand Down

0 comments on commit 62931b1

Please sign in to comment.