13 lines
165 B
Go
Raw Permalink Normal View History

2025-02-22 23:00:56 +08:00
package magic
import (
"encoding/json"
"net/http"
)
type Map map[string]any
func (m Map) RespondWriter(w http.ResponseWriter) {
json.NewEncoder(w).Encode(m)
}