Brijesh's Git Server — watchman @ f57775c9d4697979ab959a360971d36dc91b178b

observability tool, needs to be rewritten once identity is stable

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"`
}