dynamic-struct icon indicating copy to clipboard operation
dynamic-struct copied to clipboard

Can we generate struct into struct?

Open muratmirgun opened this issue 4 years ago • 0 comments

for example how we create similar struct from example:

type Yaml struct {
	Name     string     `yaml:"name"`
	Version  string     `yaml:"version"`
	Datasets []Datasets `yaml:"datasets"`
}

type Datasets struct {
	Name   string   `yaml:"name"`
	Fields []Fields `yaml:"fields"`
}

type Fields struct {
	Tag  string `yaml:"tag"`
	Name string `yaml:"name"`
	Type string `yaml:"type"`
}

muratmirgun avatar Nov 25 '21 17:11 muratmirgun