mirror of
https://github.com/caddyserver/caddy.git
synced 2025-01-06 22:40:31 -05:00
removed gofumpt newlines
This commit is contained in:
parent
4a59d6fe74
commit
3445dd5126
1 changed files with 0 additions and 2 deletions
|
@ -125,7 +125,6 @@ var pad [maxPad]byte
|
||||||
// client implements a FastCGI client, which is a standard for
|
// client implements a FastCGI client, which is a standard for
|
||||||
// interfacing external applications with Web servers.
|
// interfacing external applications with Web servers.
|
||||||
type client struct {
|
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.
|
// 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.
|
// The conn field is essential for sending FastCGI requests and receiving responses from the server.
|
||||||
conn net.Conn
|
conn net.Conn
|
||||||
|
@ -148,7 +147,6 @@ type client struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewClient(conn net.Conn, logger *zap.Logger, stderr bool) client {
|
func NewClient(conn net.Conn, logger *zap.Logger, stderr bool) client {
|
||||||
|
|
||||||
client := client{
|
client := client{
|
||||||
conn: conn,
|
conn: conn,
|
||||||
requestID: 1,
|
requestID: 1,
|
||||||
|
|
Loading…
Reference in a new issue