Illia
Illia
`env-layout` tag affects only environmental variables, because [yaml parsing](https://github.com/ilyakaznacheev/cleanenv/blob/master/cleanenv.go#L168) is done by the [other library](https://github.com/BurntSushi/toml)
> > Merge > > ```yaml > openapi: 3.0.3 > > info: > description: test server > version: 1.0.0 > > paths: > /fapi/v1/order: > post: > summary: New Order...
Is there any progress on this issue? I have the similar problem
Since we return error explicitly, all errors wrappings `fmt.Errorf("something happened: %s", err)` must be replaced with `fmt.Errorf("something happened: %w", err)` in order to use `errors.Is/As` ```go switch e := err.(type)...
```yaml overrides: - db_type: "uuid" go_type: "github.com/google/uuid.UUID" - db_type: "uuid" go_type: import: "github.com/google/uuid" type: "UUID" pointer: true nullable: true ``` https://play.sqlc.dev/p/773268972b4140b3d2aca91fd2d1adcda771c84cb7f177008894b8bf78055c35 I found a workaround, but I am not sure...