com.github.leandroborgesferreira.dagcommand.domain.Config.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dag-command Show documentation
Show all versions of dag-command Show documentation
Affected gradle modules by branch
package com.github.leandroborgesferreira.dagcommand.domain
import com.github.leandroborgesferreira.dagcommand.enums.ModuleType
import com.github.leandroborgesferreira.dagcommand.enums.OutputType
data class Config(
val filter: ModuleType,
val defaultBranch: String,
val outputType: OutputType,
val outputPath: String?,
val printAdjacencyList: Boolean,
val printEdgesList: Boolean,
val printBuildStages: Boolean
)
© 2015 - 2024 Weber Informatics LLC | Privacy Policy