File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ public void main() {
1111 functions.createDeployment(
1212 functionId = "[FUNCTION_ID]",
1313 entrypoint = "[ENTRYPOINT]",
14- code = File("./path-to-files/image.jpg "),
14+ code = File("file.png "),
1515 activate = false
1616 new Continuation<Response>() {
1717 @NotNull
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ public void main() {
1111 storage.createFile(
1212 bucketId = "[BUCKET_ID]",
1313 fileId = "[FILE_ID]",
14- file = File("./path-to-files/image.jpg "),
14+ file = File("file.png "),
1515 new Continuation<Response>() {
1616 @NotNull
1717 @Override
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ suspend fun main() {
1111 val response = functions.createDeployment(
1212 functionId = "[FUNCTION_ID]",
1313 entrypoint = "[ENTRYPOINT]",
14- code = File("./path-to-files/image.jpg "),
14+ code = File("file.png "),
1515 activate = false
1616 )
1717 val json = response.body?.string()
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ suspend fun main() {
1111 val response = storage.createFile(
1212 bucketId = "[BUCKET_ID]",
1313 fileId = "[FILE_ID]",
14- file = File("./path-to-files/image.jpg "),
14+ file = File("file.png "),
1515 )
1616 val json = response.body?.string()
1717}
You can’t perform that action at this time.
0 commit comments