Improve the description of the Provider interface

pull/2/head
Vinícius Garcia 2021-09-03 11:08:52 -03:00
parent ba6727b14a
commit 22fa8fdfa4
2 changed files with 2 additions and 2 deletions

View File

@ -68,7 +68,7 @@ The current interface is as follows and we plan on keeping
it with as little functions as possible, so don't expect many additions:
```go
// Provider describes the public behavior of this ORM
// Provider describes the ksql public behavior
type Provider interface {
Insert(ctx context.Context, table Table, record interface{}) error
Update(ctx context.Context, table Table, record interface{}) error

View File

@ -14,7 +14,7 @@ var ErrRecordNotFound error = errors.Wrap(sql.ErrNoRows, "ksql: the query return
// ErrAbortIteration ...
var ErrAbortIteration error = fmt.Errorf("ksql: abort iteration, should only be used inside QueryChunks function")
// Provider describes the public behavior of this ORM
// Provider describes the ksql public behavior
type Provider interface {
Insert(ctx context.Context, table Table, record interface{}) error
Update(ctx context.Context, table Table, record interface{}) error