job.go 342 B

12345678910111213
  1. // SPDX-FileCopyrightText: Copyright The Miniflux Authors. All rights reserved.
  2. // SPDX-License-Identifier: Apache-2.0
  3. package model // import "miniflux.app/v2/internal/model"
  4. // Job represents a payload sent to the processing queue.
  5. type Job struct {
  6. UserID int64
  7. FeedID int64
  8. }
  9. // JobList represents a list of jobs.
  10. type JobList []Job