Skip to content

Commit

Permalink
update README
Browse files Browse the repository at this point in the history
  • Loading branch information
ahuret committed Apr 13, 2023
1 parent 6b74ea2 commit a516d73
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ It covers the most common usage and contains for each models those functions :
### Create
```go
func (c *Client) CreateCrmLead(cl *CrmLead) (int64, error) {}
func (c *Client) CreateCrmLeads(cls []*CrmLead) ([]int64, error) {}
```

### Update
Expand Down Expand Up @@ -196,7 +197,7 @@ These functions give you more flexibility but less usability. We recommand you t
Here are available low level functions :

```go
func (c *Client) Create(model string, values interface{}) (int64, error) {}
func (c *Client) Create(model string, values []interface{}) ([]int64, error) {}
func (c *Client) Update(model string, ids []int64, values interface{}) error {}
func (c *Client) Delete(model string, ids []int64) error {}
func (c *Client) SearchRead(model string, criteria *Criteria, options *Options, elem interface{}) error {}
Expand Down

0 comments on commit a516d73

Please sign in to comment.