Victor Lacasse-Beaudoin
a8dcdd0388
Tag v6.0.0 est sorti mais n'était pas réflété dans le code. BREAKING: API est maintenant exposé sur `/v6` et non `/v5`
11 lines
211 B
Go
11 lines
211 B
Go
package handlers
|
|
|
|
import "git.agecem.com/agecem/bottin/v6/data"
|
|
|
|
type Handler struct {
|
|
DataClient *data.DataClient
|
|
}
|
|
|
|
func New(dataClient *data.DataClient) *Handler {
|
|
return &Handler{DataClient: dataClient}
|
|
}
|