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
Currently the structure is flat which ends up looking like:
starship/ cmd/ starship/ registry/ faucet/ exposer/ client/ tools/ ...
The benifit of this structure is:
go.mod
We should restructure the go modules such that they become part of the same go.mod as well. Something like:
starship/ cmd/ cli/ registry/ faucet/ exposer/ pkg/ registry/ faucet/ exposer/ client/ tools/ go.mod
Pros:
config
logging
Cons:
The text was updated successfully, but these errors were encountered:
config.go
No branches or pull requests
Overview
Currently the structure is flat which ends up looking like:
The benifit of this structure is:
go.mod
for each of the componentsProposal
We should restructure the go modules such that they become part of the same
go.mod
as well. Something like:Pros:
go.mod
will be needed (can have seperate ones too)config
logging
together as well into one system.Cons:
The text was updated successfully, but these errors were encountered: