| 6 | ) |
| 7 | |
| 8 | type Dashboard struct { |
| 9 | BookNumber int64 `json:"book_number"` |
| 10 | BookNumberToday int64 `json:"book_number_today"` |
| 11 | DocumentNumber int64 `json:"document_number"` |
| 12 | DocumentNumberToday int64 `json:"document_number_today"` |
| 13 | MemberNumber int64 `json:"member_number"` |
| 14 | MemberNumberToday int64 `json:"member_number_today"` |
| 15 | CommentNumber int64 `json:"comment_number"` |
| 16 | CommentNumberToday int64 `json:"comment_number_today"` |
| 17 | AttachmentNumber int64 `json:"attachment_number"` |
| 18 | } |
| 19 | |
| 20 | func NewDashboard() *Dashboard { |
| 21 | return &Dashboard{} |
nothing calls this directly
no outgoing calls
no test coverage detected