Skip to content

Commit

Permalink
fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
hpratt committed May 20, 2023
1 parent 3143667 commit b1f3f9e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/kotlin/krews/App.kt
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import krews.core.*
import krews.executor.google.*
import krews.executor.local.LocalExecutor
import krews.executor.slurm.SlurmExecutor
import krews.executor.bsub.BsubExecutor
import mu.KotlinLogging
import java.io.File
import java.nio.file.*
Expand Down Expand Up @@ -85,5 +86,5 @@ class KrewsApp(private val workflowBuilder: WorkflowBuilder) : CliktCommand() {
}

enum class Executors(val locallyDirected: Boolean) {
LOCAL(true), GOOGLE(false), GOOGLE_LOCAL(true), SLURM(true)
LOCAL(true), GOOGLE(false), GOOGLE_LOCAL(true), SLURM(true), BSUB(true)
}

0 comments on commit b1f3f9e

Please sign in to comment.