4
0
mirror of https://github.com/cwinfo/yggdrasil-go.git synced 2025-06-14 18:36:07 +00:00

Run gofmt -s -w

This commit is contained in:
Neil Alexander
2018-05-21 07:28:03 +01:00
parent cc6fb8bd98
commit bd32f5890b
2 changed files with 23 additions and 23 deletions

View File

@ -249,7 +249,7 @@ func (a *admin) handleRequest(conn net.Conn) {
// Decode the input
if err := decoder.Decode(&recv); err != nil {
// fmt.Println("Admin socket JSON decode error:", err)
// fmt.Println("Admin socket JSON decode error:", err)
return
}
@ -301,7 +301,7 @@ func (a *admin) handleRequest(conn net.Conn) {
// Send the response back
if err := encoder.Encode(&send); err != nil {
// fmt.Println("Admin socket JSON encode error:", err)
// fmt.Println("Admin socket JSON encode error:", err)
return
}