Skip to content
New issue

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

Use a dependency manager to handle external packages #2

Closed
arush-sal opened this issue May 24, 2018 · 0 comments · Fixed by #3
Closed

Use a dependency manager to handle external packages #2

arush-sal opened this issue May 24, 2018 · 0 comments · Fixed by #3

Comments

@arush-sal
Copy link
Contributor

We have the following external packages imported in the code:

import (
    ...github.com/spf13/cobra”
    “github.com/spf13/viper”
)

Now everyone who wishes to build the code will have to import these packages individually which could become a challenge as the project size and the number of imported packages increases. Therefore we should use a package manager(recommended godep) to take care of this problem. So that the users will just have to issue a single command i.e dep ensure to get all the external packages and they will be all good to build the code.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant