8 lines
165 B
Go
8 lines
165 B
Go
|
|
package processor
|
||
|
|
|
||
|
|
import "context"
|
||
|
|
|
||
|
|
type FileClient interface {
|
||
|
|
UploadFile(ctx context.Context, fileName string, fileContent []byte) (fileUrl string, err error)
|
||
|
|
}
|