You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
375 B
16 lines
375 B
package service |
|
|
|
import ( |
|
"context" |
|
"io" |
|
|
|
"go-common/library/log" |
|
) |
|
|
|
// Upload http upload file. |
|
func (s *Service) Upload(c context.Context, fileName, fileType string, expire int64, body io.Reader) (location string, err error) { |
|
if location, err = s.d.Upload(c, fileName, fileType, expire, body); err != nil { |
|
log.Error("s.upload.Upload() error(%v)", err) |
|
} |
|
return |
|
}
|
|
|