go-redfish/Makefile
Kanwar Saad Bin Liaqat 1be688562a
rename github org
2019-09-19 00:06:55 +03:00

12 lines
347 B
Makefile

.PHONY: code-gen
code-gen:
rm -rf client
openapi-generator generate -i ./spec/openapi.yaml -g go --package-name "client" --git-repo-id go-redfish/client --git-user-id Nordix -o client/
.PHONY: deps
deps:
go get github.com/stretchr/testify/assert
go get golang.org/x/oauth2
go get golang.org/x/net/context
go get github.com/antihax/optional