mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-06 04:15:46 +08:00
15 lines
265 B
Go
15 lines
265 B
Go
package cont
|
|
|
|
import (
|
|
"fmt"
|
|
"github.com/OpenIMSDK/Open-IM-Server/pkg/common/db/s3"
|
|
)
|
|
|
|
type HashAlreadyExistsError struct {
|
|
Object *s3.ObjectInfo
|
|
}
|
|
|
|
func (e *HashAlreadyExistsError) Error() string {
|
|
return fmt.Sprintf("hash already exists: %s", e.Object.Key)
|
|
}
|