gocc/config.go
2022-08-17 19:48:36 +02:00

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"`
}