Brad Johnson
Brad Johnson
If anyone is looking for an interim solution, I've found that using Zapier provides a *much* less frustrating experience than this GitHub integration. `Trigger`: [Github] New Pull Request `Action`: Post...
Jumping in here because I haven't seen anyone mention my use-case. I would find being able to access the message useful for testing. i.e: ``` func myFunc(thing3Helper helper) (error) {...
Yeah, what you've described is the option I've settled for. My only qualm with it is that, in the non-contrived version of this scenario, I actually have multiple "things" that...
I'm actually warming up to this pattern when the opportunity arises. Consider this example, where I have some low level implementation of a thing: ```go package lowlevel type LowLevelThing struct...
As a workaround, you can **temporarily** add a named struct to your implementation and update it to return that named struct before running code gen. Then undo those changes and...
@sanket360 I used alt-enter while my keyboard cursor was placed within `OnInit`
For me, specifically, the fix was to add: ``` module: default version: default ``` to app.yaml. The version *had* to be default. I'm not going to pretend I understand why.