mirror of
https://github.com/confirmedcode/Lockdown-iOS.git
synced 2025-12-21 12:14:02 +01:00
22 lines
377 B
Swift
22 lines
377 B
Swift
//
|
|
// SignUpViewController.swift
|
|
// Lockdown
|
|
//
|
|
// Created by Aliaksandr Dvoineu on 17.05.23.
|
|
// Copyright © 2023 Confirmed Inc. All rights reserved.
|
|
//
|
|
|
|
import CocoaLumberjackSwift
|
|
import PopupDialog
|
|
import PromiseKit
|
|
import UIKit
|
|
|
|
final class SignUpViewController: BaseViewController, Loadable {
|
|
|
|
}
|
|
|
|
enum AuthenticationViewControllerMode {
|
|
case login, signUp
|
|
}
|
|
|