mirror of
https://github.com/dagu-org/dagu.git
synced 2025-12-28 06:34:22 +00:00
11 lines
304 B
Go
11 lines
304 B
Go
package jsondb
|
|
|
|
import "errors"
|
|
|
|
// Error definitions for directory structure validation
|
|
var (
|
|
// ErrInvalidRunDir is returned when an run directory has an invalid format
|
|
// and cannot be parsed to extract timestamp and request ID information.
|
|
ErrInvalidRunDir = errors.New("invalid run directory")
|
|
)
|