fix: imports dans handler.go
This commit is contained in:
parent
1c2220337c
commit
a76a907ce5
1 changed files with 2 additions and 4 deletions
|
@ -10,8 +10,6 @@ import (
|
|||
|
||||
"codeberg.org/vlbeaudoin/pave/v2"
|
||||
"codeberg.org/vlbeaudoin/voki/v3"
|
||||
"git.agecem.com/agecem/agecem-org/api"
|
||||
"git.agecem.com/agecem/agecem-org/media"
|
||||
"git.agecem.com/agecem/agecem-org/version"
|
||||
"github.com/labstack/echo/v4"
|
||||
"github.com/minio/minio-go/v7"
|
||||
|
@ -19,7 +17,7 @@ import (
|
|||
|
||||
type V1Handler struct {
|
||||
Config Config
|
||||
MediaClient *media.MediaClient
|
||||
MediaClient *MediaClient
|
||||
Pave *pave.Pave
|
||||
}
|
||||
|
||||
|
@ -565,7 +563,7 @@ func (h *V1Handler) ReadSpec(c echo.Context) error {
|
|||
}
|
||||
|
||||
type WebHandler struct {
|
||||
ApiClient *api.API
|
||||
ApiClient *API
|
||||
}
|
||||
|
||||
func HandleIndex(c echo.Context) error {
|
||||
|
|
Loading…
Reference in a new issue