2024-09-29 22:15:28 +08:00

8 lines
81 B
Go

package manager
import "errors"
var (
ErrNotFound = errors.New("not found")
)