Apply formatting fixes

This commit is contained in:
eikek
2022-08-07 16:31:09 +02:00
parent 868285a26b
commit b51b782c73
71 changed files with 166 additions and 20 deletions

View File

@ -1,7 +1,14 @@
/*
* Copyright 2020 Eike K. & Contributors
*
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
package docspell.scheduler
import cats.Applicative
import cats.data.{Kleisli, OptionT}
import docspell.common.AccountInfo
/** Strategy to find the user that submitted the job. This is used to emit events about

View File

@ -8,8 +8,10 @@ package docspell.scheduler
import cats.effect.Sync
import cats.syntax.functor._
import docspell.common._
import docspell.scheduler.usertask.UserTaskScope
import io.circe.Encoder
final case class Job[A](

View File

@ -9,6 +9,7 @@ package docspell.scheduler.impl
import cats.data.OptionT
import cats.effect._
import cats.implicits._
import docspell.common.{Ident, JobState}
import docspell.notification.api.{Event, EventSink}
import docspell.pubsub.api.PubSubT