Add rendering of available transformer names to continuousLogSync help (#109)

This commit is contained in:
Edvard Hübinette
2018-11-12 14:01:07 +01:00
committed by GitHub
parent 672269effa
commit 571f300392
2 changed files with 40 additions and 1 deletions
@@ -31,3 +31,37 @@ var (
VatTuneLabel = "vatTune"
VowFlogLabel = "vowFlog"
)
func AllTransformerLabels() []string {
return []string{
BiteLabel,
CatFileChopLumpLabel,
CatFileFlipLabel,
CatFilePitVowLabel,
DealLabel,
DentLabel,
DripDripLabel,
DripFileIlkLabel,
DripFileRepoLabel,
DripFileVowLabel,
FlapKickLabel,
FlipKickLabel,
FlopKickLabel,
FrobLabel,
PitFileDebtCeilingLabel,
PitFileIlkLabel,
PitFileStabilityFeeLabel,
PriceFeedLabel,
TendLabel,
VatFluxLabel,
VatFoldLabel,
VatGrabLabel,
VatHealLabel,
VatInitLabel,
VatMoveLabel,
VatSlipLabel,
VatTollLabel,
VatTuneLabel,
VowFlogLabel,
}
}