├── README.md ├── index.php ├── src └── wechat.php ├── static ├── chat.css ├── images │ ├── bg.jpg │ └── nango.jpg └── jquery-1.7.2.js └── tpl ├── chat.php └── qrcode.php /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nangge/webchat-robot/HEAD/README.md -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nangge/webchat-robot/HEAD/index.php -------------------------------------------------------------------------------- /src/wechat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nangge/webchat-robot/HEAD/src/wechat.php -------------------------------------------------------------------------------- /static/chat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nangge/webchat-robot/HEAD/static/chat.css -------------------------------------------------------------------------------- /static/images/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nangge/webchat-robot/HEAD/static/images/bg.jpg -------------------------------------------------------------------------------- /static/images/nango.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nangge/webchat-robot/HEAD/static/images/nango.jpg -------------------------------------------------------------------------------- /static/jquery-1.7.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nangge/webchat-robot/HEAD/static/jquery-1.7.2.js -------------------------------------------------------------------------------- /tpl/chat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nangge/webchat-robot/HEAD/tpl/chat.php -------------------------------------------------------------------------------- /tpl/qrcode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nangge/webchat-robot/HEAD/tpl/qrcode.php --------------------------------------------------------------------------------