Skip to content

Commit cc91b4a

Browse files
committed
Added WeatherService dependencies
1 parent 973a940 commit cc91b4a

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
//
2+
// Dependencies.swift
3+
// SkyWizard-SwiftUI
4+
//
5+
// Created by Hishara Dilshan on 07/11/2024.
6+
//
7+
8+
import Foundation
9+
import NetworkingService
10+
import SkyWizardService
11+
import Factory
12+
13+
extension Container {
14+
var weatherServiceRemote: Factory<WeatherService> {
15+
Factory(self) {
16+
WeatherServiceRemote(dataTransferService: self.dataTransferServiceWeather())
17+
}
18+
}
19+
}

0 commit comments

Comments
 (0)