oag
oag copied to clipboard
Insert a newline in struct decls between embedded structs and regular fields
for example:
type Foo struct{
Bar
Name string
}
Should be:
type Foo struct{
Bar
Name string
}