Files
packets/internal/errors/errors.go
2025-09-18 20:12:07 -03:00

9 lines
232 B
Go

package errors_packets
import "errors"
var (
ErrResponseNot200OK = errors.New("the request is not 200, download failed")
ErrCantFindManifestTOML = errors.New("can't find manifest.toml when trying to read the packagefile")
)