- Added verify OTP api - Modified the flow - Made a authfunc to handle the type of user and the language selected - Added OTP fields combine logic. Also handled the otp blank checks. - Added API for intrestes get
19 lines
316 B
Swift
19 lines
316 B
Swift
//
|
|
// StoryBoard.swift
|
|
// WOKA
|
|
//
|
|
// Created by Bilal on 26/04/2024.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
extension K{
|
|
|
|
struct StoryBoard{
|
|
static let main = "Main"
|
|
static let authenticationSB = "AuthenticationSB"
|
|
static let home = "Home"
|
|
static let customAlerts = "CustomAlerts"
|
|
}
|
|
}
|