Vapor Swift
Vapor के लिए Swift स्निपेट, जो /pixel.gif पर आने वाली रिक्वेस्ट का जवाब empty GIF से देता है। GIF स्टार्टअप पर एक ही बार डिकोड होता है।
Vapor Swift
import Foundation
import Vapor
let gif = Data(base64Encoded: "R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==")!
@main
struct Server {
static func main() async throws {
let app = try await Application.make(.detect())
app.http.server.configuration.port = 8080
app.get("/pixel.gif".pathComponents) { _ in
Response(
status: .ok,
headers: ["Content-Type": "image/gif", "Cache-Control": "no-store"],
body: .init(data: gif)
)
}
try await app.execute()
try await app.asyncShutdown()
}
}
हमने यह स्निपेट चलाया और इसके लौटाए बाइट्स की तुलना की।
जाँचें
curl -sI http://localhost:8080/pixel.gif