# Yep Ai Chat Wordpress Plugin



### Code Structure:
```
├── assets // Plugin assets
├── CHANGELOG.txt // Plugin changelog
├── composer.json // Composer configuration
├── DATABASE_UPGRADE.txt // Database upgrade
├── languages // Plugin languages
├── LICENSE.txt // Plugin license
├── README.md
├── readme.txt // Wordpress plugin readme
├── src
│   ├── Admin  // Admin pages
│   ├── Constant // Common Constants
│   ├── Frontend // Frontend pages
│   ├── Service // Yepai logic code
│   ├── Utils // Utilities
│   ├── config.php //configure page
│   ├── helper.php //helper functions
│   └── Application.php // Plugin main class
├── templates // Plugin template files
├── vendor // Composer packages
├── load.php //start loading file
└── yep-ai-chat.php  // Plugin entry file
```