gofmt format fixes
This commit is contained in:
parent
00b620f229
commit
9cc410006a
@ -8,6 +8,7 @@ import (
|
||||
"git.cromer.cl/Proyecto-Titulo/alai-server/backend/database"
|
||||
"git.cromer.cl/Proyecto-Titulo/alai-server/backend/models"
|
||||
"git.cromer.cl/Proyecto-Titulo/alai-server/backend/utils"
|
||||
|
||||
"github.com/julienschmidt/httprouter"
|
||||
)
|
||||
|
||||
@ -57,7 +58,7 @@ func CreateOS(writer http.ResponseWriter, request *http.Request, params httprout
|
||||
decoder := json.NewDecoder(request.Body)
|
||||
|
||||
err := decoder.Decode(&os)
|
||||
if (err != nil) {
|
||||
if err != nil {
|
||||
utils.JSONErrorOutput(writer, http.StatusBadRequest, err.Error())
|
||||
return
|
||||
}
|
||||
@ -80,13 +81,13 @@ func UpdateOS(writer http.ResponseWriter, request *http.Request, params httprout
|
||||
decoder := json.NewDecoder(request.Body)
|
||||
|
||||
err := decoder.Decode(&os)
|
||||
if (err != nil) {
|
||||
if err != nil {
|
||||
utils.JSONErrorOutput(writer, http.StatusBadRequest, err.Error())
|
||||
return
|
||||
}
|
||||
|
||||
os.ID, err = strconv.ParseUint(params.ByName("id"), 10, 64)
|
||||
if (err != nil) {
|
||||
if err != nil {
|
||||
utils.JSONErrorOutput(writer, http.StatusBadRequest, err.Error())
|
||||
return
|
||||
}
|
||||
|
@ -23,7 +23,7 @@ func Login(writer http.ResponseWriter, request *http.Request, params httprouter.
|
||||
decoder := json.NewDecoder(request.Body)
|
||||
|
||||
err := decoder.Decode(&receivedUser)
|
||||
if (err != nil) {
|
||||
if err != nil {
|
||||
utils.JSONErrorOutput(writer, http.StatusBadRequest, err.Error())
|
||||
return
|
||||
}
|
||||
@ -115,7 +115,7 @@ func CreateUser(writer http.ResponseWriter, request *http.Request, params httpro
|
||||
decoder := json.NewDecoder(request.Body)
|
||||
|
||||
err := decoder.Decode(&user)
|
||||
if (err != nil) {
|
||||
if err != nil {
|
||||
utils.JSONErrorOutput(writer, http.StatusBadRequest, err.Error())
|
||||
return
|
||||
}
|
||||
@ -140,13 +140,13 @@ func UpdateUser(writer http.ResponseWriter, request *http.Request, params httpro
|
||||
decoder := json.NewDecoder(request.Body)
|
||||
|
||||
err := decoder.Decode(&user)
|
||||
if (err != nil) {
|
||||
if err != nil {
|
||||
utils.JSONErrorOutput(writer, http.StatusBadRequest, err.Error())
|
||||
return
|
||||
}
|
||||
|
||||
user.ID, err = strconv.ParseUint(params.ByName("id"), 10, 64)
|
||||
if (err != nil) {
|
||||
if err != nil {
|
||||
utils.JSONErrorOutput(writer, http.StatusBadRequest, err.Error())
|
||||
return
|
||||
}
|
||||
|
@ -32,14 +32,14 @@ func Serve(router *httprouter.Router) {
|
||||
|
||||
// Listen for CTRL-C(SIGTERM)
|
||||
sigterm := make(chan os.Signal)
|
||||
signal.Notify(sigterm, os.Interrupt, syscall.SIGTERM)
|
||||
signal.Notify(sigterm, os.Interrupt, syscall.SIGTERM)
|
||||
|
||||
go func() {
|
||||
<-sigterm
|
||||
// When CTRL-C is pressed shutdown the server
|
||||
if err := server.Shutdown(context.Background()); err != nil {
|
||||
log.Printf("HTTP server Shutdown: %v", err)
|
||||
}
|
||||
log.Printf("HTTP server Shutdown: %v", err)
|
||||
}
|
||||
close(idleConnsClosed)
|
||||
os.Exit(0)
|
||||
}()
|
||||
|
Loading…
Reference in New Issue
Block a user