├── .gitignore ├── README.md ├── index.html ├── js ├── function.js ├── log.js ├── ocr.js └── start.js ├── main.js └── package.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeeeze/auto-ticketing/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeeeze/auto-ticketing/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeeeze/auto-ticketing/HEAD/index.html -------------------------------------------------------------------------------- /js/function.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeeeze/auto-ticketing/HEAD/js/function.js -------------------------------------------------------------------------------- /js/log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeeeze/auto-ticketing/HEAD/js/log.js -------------------------------------------------------------------------------- /js/ocr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeeeze/auto-ticketing/HEAD/js/ocr.js -------------------------------------------------------------------------------- /js/start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeeeze/auto-ticketing/HEAD/js/start.js -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeeeze/auto-ticketing/HEAD/main.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeeeze/auto-ticketing/HEAD/package.json --------------------------------------------------------------------------------