- 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.
6 lines
129 B
Go
6 lines
129 B
Go
package job
|
|
|
|
// ProgressManager the progress manager
|
|
type ProgressManager interface {
|
|
Set(progress int, message string) error
|
|
}
|