├── .gitignore ├── LICENSE ├── Package.swift ├── README.md ├── Sources └── followdown │ └── main.swift └── demo.gif /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /.build 3 | Package.resolved 4 | .swiftpm 5 | /*.xcodeproj 6 | xcuserdata/ 7 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/followdown/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/followdown/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/followdown/HEAD/README.md -------------------------------------------------------------------------------- /Sources/followdown/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/followdown/HEAD/Sources/followdown/main.swift -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/followdown/HEAD/demo.gif --------------------------------------------------------------------------------