-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb.go
39 lines (31 loc) · 853 Bytes
/
db.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
package sdk
import (
"context"
"go-tablestore/api"
)
type DB struct {
}
func (D *DB) CreateTable(ctx context.Context, req api.CreateTableReq) error {
//TODO implement me
panic("implement me")
}
func (D *DB) ListTable(ctx context.Context, req api.ListTableReq) (api.ListTableResp, error) {
//TODO implement me
panic("implement me")
}
func (D *DB) GetTable(ctx context.Context, req api.GetTableReq) (api.GetTableResp, error) {
//TODO implement me
panic("implement me")
}
func (D *DB) DropTable(ctx context.Context, req api.DropTableReq) error {
//TODO implement me
panic("implement me")
}
func (D *DB) ModifyTable(ctx context.Context, req api.ModifyTableReq) error {
//TODO implement me
panic("implement me")
}
func (D *DB) RepairTable(ctx context.Context, req api.RepairTableReq) error {
//TODO implement me
panic("implement me")
}