12345678910111213141516171819202122232425262728 |
- //
- // ElogCoachService.swift
- // JiaPeiManage
- //
- // Created by Ning.ge on 2023/8/30.
- //
- import RxSwift
- import RxCocoa
- import SwiftyJSON
- protocol ElogCoachServiceType {
-
- }
- final class ElogCoachService: ElogCoachServiceType {
-
- private let networking : CoachNetworking
-
- init(networking: CoachNetworking) {
- self.networking = networking
- }
-
-
- }
|