Skip to content

Instantly share code, notes, and snippets.

#!/bin/bash
version=$1
# Set comma as delimiter
IFS='.'
#Read the split words into an array based on comma delimiter
read -a strarr <<< "$version"
//
// ViewController.swift
// BuilderAlert
//
// Created by Nabin Shrestha on 04/02/2022.
//
import UIKit
class ViewController: UIViewController {
//
// AlertBuilder.swift
// BuilderAlert
//
// Created by Nabin Shrestha on 04/02/2022.
//
import UIKit
public final class AlertBuilder {
//
// AlertActionProperties.swift
// BuilderAlert
//
// Created by Nabin Shrestha on 04/02/2022.
//
import UIKit
struct AlertActionProperties {
//
// AlertProperties.swift
// BuilderAlert
//
// Created by Nabin Shrestha on 04/02/2022.
//
import UIKit
struct AlertProperties {
package com.example.model
data class LoginResponse(
val success: Boolean,
val message: String,
val token: String?
)
package com.example.dtos
data class UserDTO(
val username: String,
val password: String
)
//
// MainCoordinator.swift
// ModularProject
//
// Created by Nabin Shrestha on 7/28/21.
//
import UIKit
import Login
//
// LoginCoordinator.swift
// ModularProject
//
// Created by Nabin Shrestha on 7/28/21.
//
import UIKit
import Login
//
// MainCoordinator.swift
// ModularProject
//
// Created by Nabin Shrestha on 7/28/21.
//
import UIKit
import Login