| 12 | ) |
| 13 | |
| 14 | type DownloadCounter struct { |
| 15 | Id int |
| 16 | Uid int `orm:"index"` |
| 17 | Date int `orm:"index"` |
| 18 | Total int |
| 19 | } |
| 20 | |
| 21 | func NewDownloadCounter() *DownloadCounter { |
| 22 | return &DownloadCounter{} |
nothing calls this directly
no outgoing calls
no test coverage detected