This repository has been archived on 2024-03-03. You can view files and clone it, but cannot push or open issues or pull requests.
doggo-fetcher/internal/variables.go

15 lines
409 B
Go

package internal
import "errors"
const GO_DL_SERVER = "https://go.dev/dl"
const LTS = "lts"
var (
ErrReleaseNotFound = errors.New("release not found")
ErrBadResponse = errors.New("github API responde with a non success code")
ErrEmptyTags = errors.New("no tags found")
ErrHashNotFound = errors.New("release hash not found")
ErrHashInvalid = errors.New("release hash doesn't match")
)