Retirer validation problématique

Si le handler était nil, la vérification serait probablement assez pour
faire panic l'application, ce qui serait un problème que la validation
soit présente ou non.
This commit is contained in:
Victor Lacasse-Beaudoin 2023-09-16 17:21:18 -04:00
parent 622efd8d63
commit a88809f91e

View file

@ -32,9 +32,6 @@ var apiCmd = &cobra.Command{
v0 := e.Group("/v0")
handler := apihandler.New()
if &handler == nil {
log.Fatal("Newly created APIHandler is nil")
}
handler.BottinAPIClient = bottindata.NewApiClient("bottin", "localhost", "http", 1312)