Merge pull request 'fix: ajouter client http à bottinClient' (#15) from fix/bottin-v6-newapiclient into main

Reviewed-on: #15
This commit is contained in:
Victor Lacasse-Beaudoin 2024-02-14 16:55:03 -05:00
commit 670aec4573

View file

@ -7,6 +7,7 @@ import (
"crypto/subtle"
"fmt"
"log"
"net/http"
"git.agecem.com/agecem/bottin-ag/apihandler"
"git.agecem.com/agecem/bottin-ag/config"
@ -40,7 +41,15 @@ var apiCmd = &cobra.Command{
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)
if err != nil {