style: gofmt struct-tag alignment across v0 files

v0 landed with a few misaligned struct tags and fields; gofmt -l
flagged categories.go, topics.go, discourse_test.go and the smoke
fake. Alignment only, no behavior change, so the tree passes the
gofmt gate cleanly.
This commit is contained in:
2026-08-29 16:20:44 -05:00
parent f9cf30bc72
commit f51ca5900c
4 changed files with 13 additions and 13 deletions
+1 -1
View File
@@ -31,7 +31,7 @@ type Topic struct {
CategoryID int `json:"category_id"`
CreatedAt string `json:"created_at"`
Closed bool `json:"closed"`
Archived bool `json:"archived"`
Archived bool `json:"archived"`
PostStream struct {
Posts []Post `json:"posts"`
} `json:"post_stream"`