Analytics seems cool, and me liek numbrers.
| 79 | // Analytics seems cool, and me liek numbrers. |
| 80 | |
| 81 | type AnalyticData struct { |
| 82 | DataType string `gorm:"type:string;not null"` |
| 83 | IPAddress string `gorm:"type:string;"` |
| 84 | Language string `gorm:"type:string;"` |
| 85 | UserAgent string `gorm:"type:string;"` |
| 86 | TwitterClient string `gorm:"type:string"` |
| 87 | TwitterClientVersion string `gorm:"type:string"` |
| 88 | Timestamp time.Time `gorm:"type:timestamp"` |
| 89 | } |
| 90 | |
| 91 | // ShortLink represents the schema for the short_links table |
| 92 | type ShortLink struct { |
nothing calls this directly
no outgoing calls
no test coverage detected