bfs.go 222 B

12345678
  1. package service
  2. import "context"
  3. // UploadImg upload img
  4. func (s *Service) UploadImg(c context.Context, imgContent []byte, imgName string) (location string, err error) {
  5. return s.dao.UploadImg(c, imgContent, imgName)
  6. }