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
When creating an enum, the go generator calls importBuilder.publicName on the enum name, which then calls ensureImport.
importBuilder.publicName
ensureImport
This will create an import statement for any part of a enum name preceding a period.
eg: This results in import "memberships" in the generated client, which doesn't exist.
import "memberships"
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When creating an enum, the go generator calls
importBuilder.publicName
on the enum name, which then callsensureImport
.This will create an import statement for any part of a enum name preceding a period.
eg: This results in
import "memberships"
in the generated client, which doesn't exist.The text was updated successfully, but these errors were encountered: