-
Notifications
You must be signed in to change notification settings - Fork 105
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
[Go] reorganize and document #200
Conversation
Make the API nicer. - Unexport symbols that don't need to be visible. - Write documentation some undocumented symbols.
Apologies for the big PR. Everything is just renaming and movement. No change in functionality. It might help to review each commit separately. The first just renames and unexports. The second creates new packages. |
go/genkit/dev_server_test.go
Outdated
@@ -24,6 +24,7 @@ import ( | |||
"strings" | |||
"testing" | |||
|
|||
gtrace "github.com/firebase/genkit/go/trace" |
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.
The impulse to use an import alias for each import suggests that the package name should actually be gtrace.
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.
Done.
Make the API nicer.
Unexport symbols that don't need to be visible.
Write documentation for some undocumented symbols.