9 lines
189 B
Go
9 lines
189 B
Go
|
package main
|
||
|
|
||
|
type Config struct {
|
||
|
OS []string `json:"os"`
|
||
|
Arch []string `json:"arch"`
|
||
|
NoCompress bool `json:"no_compress"`
|
||
|
NumThreads int `json:"num_threads"`
|
||
|
}
|