Encore.go (raw endpoint) Go
مقتطف بلغة Go لـ Encore.go (raw endpoint) يستجيب لطلبات /pixel.gif بملف GIF الفارغ، الذي يُفك ترميزه مرة واحدة عند بدء التشغيل.
Encore.go (raw endpoint) Go
// pixel/pixel.go: a package with an //encore:api endpoint is an Encore service.
package pixel
import (
"encoding/base64"
"net/http"
)
var gif, _ = base64.StdEncoding.DecodeString("R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==")
// Raw endpoints get the plain http.ResponseWriter.
//
//encore:api public raw method=GET path=/pixel.gif
func Pixel(w http.ResponseWriter, req *http.Request) {
w.Header().Set("Content-Type", "image/gif")
w.Header().Set("Cache-Control", "no-store")
w.Write(gif)
}
شغّلنا هذا المقتطف وقارنّا البايتات التي أعادها.
التحقق
curl -sI http://localhost:8080/pixel.gif
الموقع الرسمي: Encore.go (raw endpoint)