17 lines
288 B
Go
17 lines
288 B
Go
package webutils
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
"net/http"
|
|
)
|
|
|
|
func SendJson(w http.ResponseWriter, data any) error {
|
|
encoded, err := json.Marshal(data)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
w.Header().Add("Content-Type", "application/json")
|
|
fmt.Fprint(w, string(encoded))
|
|
return nil
|
|
}
|