From e8a2cae9de49bdc04f83a813d01393c08aec17cd Mon Sep 17 00:00:00 2001 From: goghrf Date: Thu, 16 Jan 2025 16:03:15 +0900 Subject: [PATCH] =?UTF-8?q?=EB=B6=88=ED=95=84=EC=9A=94=ED=95=9C=20?= =?UTF-8?q?=ED=8C=8C=EC=9D=BC=20=EC=82=AD=EC=A0=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Repository/ExampleRepositoryImpl.swift | 31 ------------------- 1 file changed, 31 deletions(-) delete mode 100644 MyLuxury/Data/Sources/Data/Repository/ExampleRepositoryImpl.swift diff --git a/MyLuxury/Data/Sources/Data/Repository/ExampleRepositoryImpl.swift b/MyLuxury/Data/Sources/Data/Repository/ExampleRepositoryImpl.swift deleted file mode 100644 index 8044bf0..0000000 --- a/MyLuxury/Data/Sources/Data/Repository/ExampleRepositoryImpl.swift +++ /dev/null @@ -1,31 +0,0 @@ -// -// ExampleRepositoryImpl.swift -// MyLuxury -// -// Created by KoSungmin on 10/3/24. -// - -import Foundation -import Combine -import Domain - -//public class ExampleRepositoryImpl: ExampleRepository { -// -// /// NetworkManager 사용 예정 -// func fetchData() -> AnyPublisher { -// -// let url = URL(string: "localhost:8080/")! -// -// return URLSession.shared.dataTaskPublisher(for: url) -// /// 네트워크 실패 시 실행되는 연산자 -// .catch { error in -// return Fail(error: error).eraseToAnyPublisher() -// } -// .map { $0.data } -// .decode(type: ExampleRespDTO.self, decoder: JSONDecoder()) -// .map { $0.toExampleEntity() } -// .eraseToAnyPublisher() -// } -//} - -