Skip to content

Instantly share code, notes, and snippets.

# Repo: someuser/myframework
# Fork: superteam/myframework
# Track:
git clone https://github.com/superteam/myframework.git
cd myframework
git remote add upstream https://github.com/someuser/myframework.git
# Update:
git fetch upstream
//: A UIKit based Playground for presenting user interface
import UIKit
import PlaygroundSupport
//
//class MyViewController : UIViewController {
// override func loadView() {
// let view = UIView()
// view.backgroundColor = .white
//
@KhyeK
KhyeK / CleanArc.swift
Created February 9, 2021 16:25 — forked from aromal-sasidharan/CleanArc.swift
Clean Architecture using Swift
protocol M {
func convert(stringInt: [String]) -> [Int]
}
protocol W {
func fetchDays() -> [String]
}
protocol I {
var worker: W? {get set}