- Updated benchmark functions to utilize TaiID instead of pool names for improved consistency and accuracy in tests. - Refactored test cases across various files to ensure compatibility with the new TaiID structure. - Enhanced setup functions to accept pointers to poolConfig for better memory management. - Removed deprecated config struct and adjusted related documentation to reflect the changes in the sandbox architecture. Made-with: Cursor
10 lines
293 B
Go
10 lines
293 B
Go
package sandbox
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrNotAvailable = errors.New("sandbox: not available (no pools configured)")
|
|
ErrNotFound = errors.New("sandbox: not found")
|
|
ErrPoolNotFound = errors.New("sandbox: pool not found")
|
|
ErrPoolMissing = errors.New("sandbox: pool name is required")
|
|
)
|