Brijesh's Git Server — watchman @ 06015f9ee3bf5decd99f1b13233799f6609d5989

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