Visit the repository on github and fork it as shown below
src/
│
├── commands/ # Contains command modules
│ ├── chat.command.ts
│ ├── gpt.command.ts
│ ├── help.command.ts
│ ├── index.ts
│ ├── langlist.command.ts
│ ├── meme.command.ts
│ ├── joke.command.ts
│ ├── ping.command.ts
│ └── translate.command.ts
│
├── configs/ # Configuration files
│ ├── client.config.ts
│ ├── env.config.ts
│ └── logger.config.ts
│
├── utils/ # Utility functions
│ ├── chat-gpt.util.ts
│ ├── gemini.util.ts
│ └── translate.util.ts
│
├── public/ # Public assets
│ └── index.png # Bot preview image
│
└── index.ts # Main entry point