yao/job/interfaces.go
Max d9c593728e Add organization model and enhance user model indexing
- Introduced the organization model with associated data structure and methods for asset management.
- Updated user model to include new indexing on locale and zoneinfo for improved internationalization queries.
- Refactored system and test model mappings to include the new organization model, ensuring consistency across the application.
2025-09-04 17:17:16 +08:00

6 lines
129 B
Go

package job
// ProgressManager the progress manager
type ProgressManager interface {
Set(progress int, message string) error
}