IHLoginVCtr.swift 343 B

123456789101112131415161718192021
  1. //
  2. // IHLoginVCtr.swift
  3. // Inhealth
  4. //
  5. // Created by weclouds on 2019/12/10.
  6. // Copyright © 2019 weclouds. All rights reserved.
  7. //
  8. import UIKit
  9. class IHLoginVCtr: UIViewController {
  10. let manager = IHLoginManager()
  11. override func viewDidLoad() {
  12. super.viewDidLoad()
  13. manager.bindController(self)
  14. }
  15. }