├── .gitignore ├── Action.php ├── LICENSE ├── Plugin.php ├── README.md ├── image ├── logo.png └── wp.png └── panel.php /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | ftpsync.settings -------------------------------------------------------------------------------- /Action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunxiyuan/ByeTyp/HEAD/Action.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunxiyuan/ByeTyp/HEAD/LICENSE -------------------------------------------------------------------------------- /Plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunxiyuan/ByeTyp/HEAD/Plugin.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunxiyuan/ByeTyp/HEAD/README.md -------------------------------------------------------------------------------- /image/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunxiyuan/ByeTyp/HEAD/image/logo.png -------------------------------------------------------------------------------- /image/wp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunxiyuan/ByeTyp/HEAD/image/wp.png -------------------------------------------------------------------------------- /panel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunxiyuan/ByeTyp/HEAD/panel.php --------------------------------------------------------------------------------