style(shortcuts): gofmt binder_test.go

CI fast-gate's `gofmt -l .` flagged an alignment issue in contentBucket:
gofmt aligns struct field tags to the longest *named* tag-bearing field
in the group; my hand-written extra spaces in `Text *string   \`flag:"ct"\``
got normalised to a single space.

Behaviour-neutral; tests still pass.
This commit is contained in:
shanglei
2026-05-28 16:51:17 +08:00
parent b5cd535285
commit 6b4bc0cc64

View File

@@ -240,7 +240,7 @@ type vidGroup struct {
Cover string `flag:"vid-cover"`
}
type contentBucket struct {
Text *string `flag:"ct"`
Text *string `flag:"ct"`
Video *vidGroup
}