Skip to content

Commit 88481bf

Browse files
vojtabiberleclaude
andcommitted
DMD-921 - Move ProjectStats type to top of file
Move type definition to be grouped with other type definitions at the top of the file for better organization. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 3b7f85b commit 88481bf

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

internal/pkg/llm/twinformat/writer/markdown.go

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,14 @@ type MarkdownBuilder struct {
3838
lines []string
3939
}
4040

41+
// ProjectStats holds statistics for README generation.
42+
type ProjectStats struct {
43+
TotalBuckets int
44+
TotalTables int
45+
TotalTransformations int
46+
TotalEdges int
47+
}
48+
4149
// NewMarkdownBuilder creates a new Markdown builder.
4250
func NewMarkdownBuilder() *MarkdownBuilder {
4351
return &MarkdownBuilder{
@@ -189,11 +197,3 @@ func GenerateProjectREADME(projectID string, stats ProjectStats) string {
189197

190198
return mb.String()
191199
}
192-
193-
// ProjectStats holds statistics for README generation.
194-
type ProjectStats struct {
195-
TotalBuckets int
196-
TotalTables int
197-
TotalTransformations int
198-
TotalEdges int
199-
}

0 commit comments

Comments
 (0)