10 lines
149 B
Go
10 lines
149 B
Go
package data
|
|
|
|
type Descriptor struct {
|
|
Type string
|
|
Key string
|
|
Schema string
|
|
Attributes map[string]string
|
|
Tags []string
|
|
}
|