Brijesh's Git Server — watchman @ 7f51bf3a21194b4333b784763ebd1bb4b47a4481

observability tool, needs to be rewritten once identity is stable

schema/types.go (view raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
package schema

type Response_Type struct {
	Data      interface{} `json:"data,omitempty"`
	Status    string      `json:"status"`
	Message   string      `json:"message"`
	RequestID string      `json:"request_id"`
}

type RequestIDKey struct{}

type ConfigType struct {
	Port int `yaml:"port"`
}