8 lines
81 B
Go
Raw Normal View History

2024-09-29 22:15:28 +08:00
package manager
import "errors"
var (
ErrNotFound = errors.New("not found")
)