something like this ``` class S3ContextBuilder(buc...
# announcements
s
something like this
Copy code
class S3ContextBuilder(bucketName: String = "", s3Client: AmazonS3? = null) {
    infix fun String.moveTo(destinationPath: String) {
        this copyTo destinationPath
        this.delete()
    }
}