From a531af40b7e47b900940ec5591c05c506ae343df Mon Sep 17 00:00:00 2001 From: Aakiyaru Date: Tue, 27 May 2025 14:29:06 +0700 Subject: [PATCH] auth --- Sources/NetworkApi/Interfaces/BaseNetworkService.swift | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Sources/NetworkApi/Interfaces/BaseNetworkService.swift b/Sources/NetworkApi/Interfaces/BaseNetworkService.swift index 38e0da8..1f25064 100644 --- a/Sources/NetworkApi/Interfaces/BaseNetworkService.swift +++ b/Sources/NetworkApi/Interfaces/BaseNetworkService.swift @@ -19,6 +19,8 @@ public final class BaseNetworkService: BaseNetworkServiceProtocol { let data = try await AF.request(stringURL, method: method, parameters: parameters, encoding: JSONEncoding.default, headers: headers).serializingData().value + print(String(data: data, encoding: .utf8)) + return data }