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? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Issue Description:
$ make build BINS=iam-authz-server github.com/marmotedu/iam/cmd/iam-authz-server cmd/iam-authz-server/authzserver.go:18:2: undefined: authzserver make[1]: *** [scripts/make-rules/golang.mk:56: go.build.linux_amd64.iam-authz-server] Error 1 make: *** [Makefile:62: build] Error 2
make build BINS=iam-authz-server
$go build -v cmd/iam-authz-server/authzserver.go command-line-arguments cmd/iam-authz-server/authzserver.go:18:2: undefined: authzserver
go build -v cmd/iam-authz-server/authzserver.go
To resolve this issue, add the following package dependency in the authzserver.go file:
import ( "math/rand" "time" "github.com/marmotedu/iam/internal/authzserver" )
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Issue Description:
$
make build BINS=iam-authz-server
github.com/marmotedu/iam/cmd/iam-authz-server
cmd/iam-authz-server/authzserver.go:18:2: undefined: authzserver
make[1]: *** [scripts/make-rules/golang.mk:56: go.build.linux_amd64.iam-authz-server] Error 1
make: *** [Makefile:62: build] Error 2
$
go build -v cmd/iam-authz-server/authzserver.go
command-line-arguments
cmd/iam-authz-server/authzserver.go:18:2: undefined: authzserver
To resolve this issue, add the following package dependency in the authzserver.go file:
The text was updated successfully, but these errors were encountered: