mirror of
https://github.com/SecurityBrewery/catalyst.git
synced 2026-05-09 02:42:33 +02:00
8333ea88a8
* Change code generator * Remove gin
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)
|
|
}
|