refactor(format): automated formatting with go fmt.

This commit is contained in:
Houmgaor
2025-11-24 17:59:41 +01:00
parent 42bb5c18ef
commit a992c5a603
344 changed files with 1423 additions and 1422 deletions

View File

@@ -69,9 +69,9 @@ func TestDecompress_WithValidHeader(t *testing.T) {
func TestDecompress_WithoutHeader(t *testing.T) {
tests := []struct {
name string
input []byte
expectError bool
name string
input []byte
expectError bool
expectOriginal bool // Expect original data returned
}{
{

View File

@@ -68,7 +68,7 @@ func (s *Server) Shutdown() {
s.listener.Close()
}
//acceptClients handles accepting new clients in a loop.
// acceptClients handles accepting new clients in a loop.
func (s *Server) acceptClients() {
for {
conn, err := s.listener.Accept()