This commit is contained in:
jiangyong 2026-05-02 08:47:04 +08:00
parent 65d7e5b581
commit 85867684a3
1 changed files with 3 additions and 3 deletions

View File

@ -10,9 +10,9 @@ import (
) )
type TableData struct { type TableData struct {
Title string Title string `json:"title"`
Headers []string Headers []string `json:"headers"`
Rows [][]string Rows [][]string `json:"rows"`
} }
type TableConfig struct { type TableConfig struct {