Adding Jobs
Guide for developers who want to extend Mend with new job types.
Overview
Section titled “Overview”This guide shows you how to add a new job type to the Mend processing engine.
- Define the job type in
internal/models/job.go - Create a processor in
internal/processor/ - Add handler in
internal/api/handlers/ - Register route in
internal/api/routes/ - Update worker to handle new job type
Example: Adding PDF Conversion
Section titled “Example: Adding PDF Conversion”Coming soon - detailed implementation guide.
Next Steps
Section titled “Next Steps”- Review Architecture
- Check API Documentation