schema/db.go (view raw)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
package schema type Project struct { ID string `json:"id"` Name string `json:"name"` } type Log struct { Level string `json:"level"` Message string `json:"message"` Subject string `json:"subject"` UserID string `json:"user_id"` ProjectID string `json:"project_id"` Time int32 `json:"time"` } |