-
Notifications
You must be signed in to change notification settings - Fork 66
goreplay-cli package #1148
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
goreplay-cli package #1148
Conversation
@@ -266,7 +265,7 @@ func init() { | |||
|
|||
} | |||
|
|||
func checkSettings() { | |||
func CheckSettings() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
exported function CheckSettings should have comment or be unexported
@@ -266,7 +265,7 @@ func init() { | |||
|
|||
} | |||
|
|||
func checkSettings() { | |||
func CheckSettings() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
exported function CheckSettings should have comment or be unexported
@@ -266,7 +265,7 @@ func init() { | |||
|
|||
} | |||
|
|||
func checkSettings() { | |||
func CheckSettings() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
exported function CheckSettings should have comment or be unexported
That's for sure interesting! However you made some of really useful packages internal, and if we talking about writing some "go plugins" in future, having |
I guess the |
I see, makes sense. If in future it will be needed, most likely it will be needed indirectly by exposing more human friendly interface. in this case lets make "proto" package open, and we can merge. |
done |
d9097d0
to
45c8a8d
Compare
Kudos, SonarCloud Quality Gate passed!
|
Looks good! |
change package from
main -> goreplay
this will allow importing
goreplay
as a package@buger wdyt?