type MirrorTestResult struct {
URL string `json:"url"`
LatencyMs int64 `json:"latencyMs"`
Ok bool `json:"ok"`
Status int `json:"status"`
Error string `json:"error,omitempty"`
}
type ModInfo struct {
Name string `json:"name"`
Entry string `json:"entry"`
Version string `json:"version"`
Type string `json:"type"`
Author string `json:"author,omitempty"`
}
type ModManifestJson struct {
Name string `json:"name"`
Entry string `json:"entry"`
Version string `json:"version"`
Type string `json:"type"`
Author string `json:"author,omitempty"`
}
type PreloaderJson struct {
ColorLog bool `json:"colorLog"`
LogLevel int `json:"logLevel"`
LogPath string `json:"logPath"`
ModsPath string `json:"modsPath"`
Version int `json:"version"`
}