From da8a204ca82336b417519cd3b0377736ea1d5d6c Mon Sep 17 00:00:00 2001 From: Guoye Zhang Date: Mon, 4 Nov 2024 00:24:35 +0000 Subject: [PATCH] Reformat --- Sources/NIOResumableUploadDemo/main.swift | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Sources/NIOResumableUploadDemo/main.swift b/Sources/NIOResumableUploadDemo/main.swift index 5753ae22..797c5e5c 100644 --- a/Sources/NIOResumableUploadDemo/main.swift +++ b/Sources/NIOResumableUploadDemo/main.swift @@ -107,7 +107,9 @@ if #available(macOS 13.0, iOS 16.0, tvOS 16.0, watchOS 9.0, *) { HTTPResumableUploadHandler( context: uploadContext, handlers: [ - UploadServerHandler(directory: URL(fileURLWithPath: CommandLine.arguments[1], isDirectory: true)) + UploadServerHandler( + directory: URL(fileURLWithPath: CommandLine.arguments[1], isDirectory: true) + ) ] ), ])