package routes type Simulation struct { ID int `json:"id"` Name string `json:"name"` Resources []string `json:"resources"` CreatedAt string `json:"created_at"` Config *string `json:"config"` SearchTime *float64 `json:"search_time"` TotalTime *float64 `json:"total_time"` TotalSizeBytes int64 `json:"total_size_bytes"` CPUInfo *string `json:"cpu_info"` GPUInfo *string `json:"gpu_info"` RAMInfo *string `json:"ram_info"` }