mirror of
https://github.com/SecurityBrewery/catalyst.git
synced 2025-12-06 07:12:46 +01:00
12 lines
216 B
Go
12 lines
216 B
Go
package service
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/SecurityBrewery/catalyst/generated/model"
|
|
)
|
|
|
|
func (s *Service) ListTasks(ctx context.Context) ([]*model.TaskWithContext, error) {
|
|
return s.database.TaskList(ctx)
|
|
}
|