package common type NativeResolver interface { GetUserKey(account, name string) (string, error) GetBucketInfo(bucket string) (*BucketInfo, error) } type BucketInfo struct { Namespace string Container string } type S3Resolver interface { GetUserAddress(account, user string) (string, error) }