6 lines
72 B
Go
6 lines
72 B
Go
|
package config
|
||
|
|
||
|
type Size struct {
|
||
|
X int `yaml:"x"`
|
||
|
Y int `yaml:"y"`
|
||
|
}
|