0
Fork 0
mirror of https://github.com/caddyserver/caddy.git synced 2024-12-30 22:34:15 -05:00

removed gofumpt newlines

This commit is contained in:
edwin 2024-07-20 19:30:21 -04:00
parent 4a59d6fe74
commit 3445dd5126

View file

@ -125,7 +125,6 @@ var pad [maxPad]byte
// client implements a FastCGI client, which is a standard for
// interfacing external applications with Web servers.
type client struct {
// This is the underlying network connection that the client uses to communicate with the FastCGI server. It could be a TCP socket or any other type of connection supported by standard Go's net package.
// The conn field is essential for sending FastCGI requests and receiving responses from the server.
conn net.Conn
@ -148,7 +147,6 @@ type client struct {
}
func NewClient(conn net.Conn, logger *zap.Logger, stderr bool) client {
client := client{
conn: conn,
requestID: 1,