Merge branch 'main' into user-account

This commit is contained in:
binwiederhier 2022-12-24 12:26:56 -05:00
commit 1b39ba70cb
3 changed files with 23 additions and 0 deletions

View file

@ -216,6 +216,10 @@ func (q *queryFilter) Pass(msg *message) bool {
return true
}
type apiHealthResponse struct {
Healthy bool `json:"healthy"`
}
type apiAccountCreateRequest struct {
Username string `json:"username"`
Password string `json:"password"`