├── .gitignore ├── LICENSE ├── Package.swift ├── README.md └── Sources └── tinyocr └── main.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackrusher/tinyocr/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackrusher/tinyocr/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackrusher/tinyocr/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackrusher/tinyocr/HEAD/README.md -------------------------------------------------------------------------------- /Sources/tinyocr/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackrusher/tinyocr/HEAD/Sources/tinyocr/main.swift --------------------------------------------------------------------------------