-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscheduler_sql.go
More file actions
45 lines (36 loc) · 1.05 KB
/
scheduler_sql.go
File metadata and controls
45 lines (36 loc) · 1.05 KB
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
40
41
42
43
44
45
// Code generated by protoc-gen-gogo. DO NOT EDIT.
// source: scheduler/scheduler.proto
package ccloud
import (
driver "database/sql/driver"
json "encoding/json"
fmt "fmt"
_ "github.com/confluentinc/proto-go-setter"
_ "github.com/gogo/protobuf/gogoproto"
proto "github.com/gogo/protobuf/proto"
_ "github.com/gogo/protobuf/types"
_ "github.com/travisjeffery/proto-go-sql"
math "math"
)
// Reference imports to suppress errors if they are not otherwise used.
var _ = proto.Marshal
var _ = fmt.Errorf
var _ = math.Inf
func (t *Region_Docker) Scan(val interface{}) error {
return json.Unmarshal(val.([]byte), t)
}
func (t *Region_Docker) Value() (driver.Value, error) {
return json.Marshal(t)
}
func (t *Region_Config) Scan(val interface{}) error {
return json.Unmarshal(val.([]byte), t)
}
func (t *Region_Config) Value() (driver.Value, error) {
return json.Marshal(t)
}
func (t *AccountMetadata) Scan(val interface{}) error {
return json.Unmarshal(val.([]byte), t)
}
func (t *AccountMetadata) Value() (driver.Value, error) {
return json.Marshal(t)
}