1
0
Fork 0
mirror of https://github.com/binwiederhier/ntfy.git synced 2025-05-30 02:15:40 +02:00

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
server

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