11 lines
205 B
Go
11 lines
205 B
Go
package oss
|
|
|
|
import (
|
|
"context"
|
|
)
|
|
|
|
type OSSRepository interface {
|
|
UploadFile(ctx context.Context, fileName string, fileContent []byte) (fileUrl string, err error)
|
|
GetPublicURL(fileName string) string
|
|
}
|