An example of MVVM using RxSwift and Swinject (DI)
This is an example project to demonstrate dependency injection and Swinject in MVVM (Model-View-ViewModel) architecture with RxSwift.
Keys.swift
with the following content in RxGithub
folder in the project. The string "TOKEN"
should be replaced with your own personal access token.Keys.swift
import Foundation
enum Keys {
static let GitHubAccessToken = "TOKEN"
}