-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtypes.go
More file actions
40 lines (33 loc) · 676 Bytes
/
types.go
File metadata and controls
40 lines (33 loc) · 676 Bytes
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
package main
type Schema struct {
Title string `json:"title"`
Properties map[string]interface{} `json:"properties"`
Items *Schema `json:"items"`
}
type JavaType struct {
Title string
Properties map[string]interface{}
Items interface{}
}
type CType struct {
Title string
Properties map[string]interface{}
Items interface{}
}
type CPPType struct {
Title string
Properties map[string]interface{}
Items interface{}
}
type GoType struct {
Name string
DataType string
}
type RustType struct {
Name string
DataType string
}
type TSType struct {
Name string
DataType string
}