We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Attempting to run
go get github.com/zyedidia/generic/prope
Results in the following error:
go: module github.com/zyedidia/generic@upgrade found (v1.2.1), but does not contain package github.com/zyedidia/generic/prope
I can retrieve the entire package with
go get github.com/zyedidia/generic
But when I try to use propfe with package main
propfe
import ( "github.com/zyedidia/generic/prope" )
func main() { data := "=ℇ∞∏" runes := []rune(data) r := prope.Newrune r.Insert(1, []rune{32}) }
I get the error message
main.go:7:2: no required module provides package github.com/zyedidia/generic/prope; to add it: go get github.com/zyedidia/generic/prope
If I download the 1.21.1 release directly from GitHub I can see that the distribution archive does not contain the `prope` package.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Attempting to run
Results in the following error:
I can retrieve the entire package with
But when I try to use
propfe
withpackage main
import (
"github.com/zyedidia/generic/prope"
)
func main() {
data := "=ℇ∞∏"
runes := []rune(data)
r := prope.Newrune
r.Insert(1, []rune{32})
}
main.go:7:2: no required module provides package github.com/zyedidia/generic/prope; to add it:
go get github.com/zyedidia/generic/prope
The text was updated successfully, but these errors were encountered: