11 lines
170 B
Go
11 lines
170 B
Go
package controller
|
|
|
|
import (
|
|
"context"
|
|
"io"
|
|
)
|
|
|
|
type Uploader interface {
|
|
Upload(ctx context.Context, file io.Reader, size int64, contentType string) (string, error)
|
|
}
|