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.
|
package service |
|
|
|
import ( |
|
"context" |
|
"io" |
|
) |
|
|
|
// Upload http upload file. |
|
func (s *Service) Upload(c context.Context, fileName, fileType string, expire int64, body io.Reader) (location string, err error) { |
|
return s.bfs.Upload(c, fileName, fileType, expire, body) |
|
}
|
|
|