Creating a New Plugin
Main steps
The creation of a plugin requires the following main steps:
- Entry Point (export async function
createDataServiceImpl
) - Create DTOs createDTOs
- Create Server Modules
createServerModules
- Create admin modules
createAdminModules
Summary: So, if we look at the high level, there are three functions that create all the code:
createDTOs
createServerModules
createAdminModules