(bucket string, key string)
| 61 | } |
| 62 | |
| 63 | func S3Path(bucket string, key string) string { |
| 64 | return "s3://" + filepath.Join(bucket, key) |
| 65 | } |
| 66 | |
| 67 | func JoinS3Path(paths ...string) string { |
| 68 | if len(paths) == 0 { |
no outgoing calls
no test coverage detected