Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func UseEncryptV2 ¶
func UseEncryptV2()
Types ¶
type FatDbInterface ¶
type FatDbInterface interface { BatchGetItem(IDs ...int) ([]Item, error) BatchGetItemWithContext(ctx context.Context, IDs ...int) ([]Item, error) BatchPutItem(items ...Item) error BatchPutItemWithContext(ctx context.Context, items ...Item) error DeleteItem(ID int) error DeleteItemWithContext(ctx context.Context, item Item) error GetItem(ID int) (Item, error) GetItemWithContext(ctx context.Context, ID int) (Item, error) PutItem(item Item) error PutItemWithContext(ctx context.Context, item Item) error Query(query string, args ...interface{}) ([]Item, error) QueryWithContext(ctx context.Context, query string, args ...interface{}) ([]Item, error) UpdateItem(item Item) error UpdateItemWithContext(ctx context.Context, item Item) error }
Click to show internal directories.
Click to hide internal directories.