18 lines
381 B
Go
18 lines
381 B
Go
package handler
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"fusenapi/server/data-transfer/internal/logic"
|
|
"fusenapi/server/data-transfer/internal/svc"
|
|
)
|
|
|
|
func GetStandardLogoListHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
|
return func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
l := logic.NewGetStandardLogoListLogic(r.Context(), svcCtx)
|
|
resp := l.GetStandardLogoList(userinfo)
|
|
|
|
}
|
|
}
|