ConfusedPolarBear bb38c90fde Automatically setup containers under test
(cherry picked from commit fa9eba300afd1b85eca88b67930c1ab80ac2ec80)
2022-09-07 22:12:46 -05:00

26 lines
576 B
Go

package main
type Configuration struct {
Common Common `json:"common"`
Servers []Server `json:"servers"`
}
type Common struct {
Library string `json:"library"`
Episode string `json:"episode"`
}
type Server struct {
Skip bool `json:"skip"`
Comment string `json:"comment"`
Address string `json:"address"`
Image string `json:"image"`
Username string `json:"username"`
Password string `json:"password"`
Browsers []string `json:"browsers"`
Tests []string `json:"tests"`
// These properties are set at runtime
Docker bool `json:"-"`
}