run gofmt -s on main and server config

This commit is contained in:
Lucas Clemente 2016-05-15 14:42:56 +02:00
parent c12a12518e
commit de660dbfc5
2 changed files with 6 additions and 8 deletions

View file

@ -71,11 +71,9 @@ func tlsConfigFromCertpath(certpath string) (*tls.Config, error) {
return nil, err
}
return &tls.Config{
Certificates: []tls.Certificate{
tls.Certificate{
Certificate: [][]byte{certDer},
PrivateKey: key,
},
},
Certificates: []tls.Certificate{{
Certificate: [][]byte{certDer},
PrivateKey: key,
}},
}, nil
}