From 66d5c3f9e2413782f923dadb11c7e724a769d603 Mon Sep 17 00:00:00 2001 From: Mohammad Reza Ansary Date: Tue, 3 Aug 2021 13:19:40 +0430 Subject: [PATCH] Change access control of options extension --- Sources/SocketKit/Socket/Options.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Sources/SocketKit/Socket/Options.swift b/Sources/SocketKit/Socket/Options.swift index e344daf..59e3a49 100644 --- a/Sources/SocketKit/Socket/Options.swift +++ b/Sources/SocketKit/Socket/Options.swift @@ -19,8 +19,8 @@ public protocol Options { var activityTimeout: TimeInterval? { get } } -public extension Options { - var authMethod: AuthMethod { +extension Options { + public var authMethod: AuthMethod { #if DEBUG return .inline(secret: "6cbdbeb15886107d0a0e") #else