fix: ajouter client http à bottinClient

Requis par version 6 du API client
This commit is contained in:
Victor Lacasse-Beaudoin 2024-02-14 16:53:59 -05:00
parent 00d2ec720e
commit 4d8ae6782b

View file

@ -7,6 +7,7 @@ import (
"crypto/subtle" "crypto/subtle"
"fmt" "fmt"
"log" "log"
"net/http"
"git.agecem.com/agecem/bottin-ag/apihandler" "git.agecem.com/agecem/bottin-ag/apihandler"
"git.agecem.com/agecem/bottin-ag/config" "git.agecem.com/agecem/bottin-ag/config"
@ -40,7 +41,15 @@ var apiCmd = &cobra.Command{
v0 := e.Group("/v0") v0 := e.Group("/v0")
bottinApiClient := bottindata.NewApiClient(cfg.Bottin.API.Key, cfg.Bottin.API.Host, cfg.Bottin.API.Protocol, cfg.Bottin.API.Port) httpClient := http.DefaultClient
bottinApiClient := bottindata.NewApiClient(
httpClient,
cfg.Bottin.API.Key,
cfg.Bottin.API.Host,
cfg.Bottin.API.Protocol,
cfg.Bottin.API.Port,
)
dbClient, err := dbclient.New(cfg.DB.Host, cfg.DB.Database, cfg.DB.User, cfg.DB.Password, cfg.DB.Port, cfg.DB.UseSSL) dbClient, err := dbclient.New(cfg.DB.Host, cfg.DB.Database, cfg.DB.User, cfg.DB.Password, cfg.DB.Port, cfg.DB.UseSSL)
if err != nil { if err != nil {