mirror of
https://github.com/CJackHwang/ds2api.git
synced 2026-05-04 00:15:28 +08:00
8 lines
154 B
Go
8 lines
154 B
Go
package admin
|
|
|
|
import "net/http"
|
|
|
|
func (h *Handler) queueStatus(w http.ResponseWriter, _ *http.Request) {
|
|
writeJSON(w, http.StatusOK, h.Pool.Status())
|
|
}
|