LoginViewModel.swift 499 B

1234567891011121314151617181920212223
  1. //
  2. // LoginViewModel.swift
  3. // Chat
  4. //
  5. // Created by Sergey Tarasov on 25.07.2022.
  6. //
  7. import Foundation
  8. import XMPPFramework
  9. import XMPPFrameworkSwift
  10. final class LoginViewModel: ObservableObject {
  11. @Published var login: String = "test11@msg.sharix-app.org"
  12. @Published var password: String = "test11_-"
  13. func login(_ completion: @escaping (Bool) -> Void) {
  14. XMPPController.shared.login(with: login, and: password)
  15. XMPPController.shared.connect()
  16. completion(true)
  17. }
  18. }