From 8730c661679b1b134ec76d29eafadd445f682d1d Mon Sep 17 00:00:00 2001 From: Sam Alba Date: Tue, 11 May 2021 15:21:34 -0700 Subject: [PATCH] cue fmt Signed-off-by: Sam Alba --- examples/simple-s3/main.cue | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/examples/simple-s3/main.cue b/examples/simple-s3/main.cue index 24cf3dbf..f8785da5 100644 --- a/examples/simple-s3/main.cue +++ b/examples/simple-s3/main.cue @@ -3,7 +3,7 @@ package main import ( "dagger.io/aws" "dagger.io/aws/s3" - "dagger.io/dagger" + "dagger.io/dagger" ) // AWS Config for credentials and default region @@ -15,11 +15,11 @@ awsConfig: aws.#Config & { bucket: *"dagger-io-examples" | string source: dagger.#Artifact -url: "\(deploy.url)index.html" +url: "\(deploy.url)index.html" deploy: s3.#Put & { - config: awsConfig - "source": source - contentType: "text/html" - target: "s3://\(bucket)/" + config: awsConfig + "source": source + contentType: "text/html" + target: "s3://\(bucket)/" }