2018-11-08 15:14:35 +00:00
|
|
|
package constants
|
|
|
|
|
|
|
|
var (
|
2018-11-21 15:30:00 +00:00
|
|
|
BiteLabel = "bite"
|
|
|
|
CatFileChopLumpLabel = "catFileChopLump"
|
|
|
|
CatFileFlipLabel = "catFileFlip"
|
|
|
|
CatFilePitVowLabel = "catFilePitVow"
|
|
|
|
DealLabel = "deal"
|
|
|
|
DentLabel = "dent"
|
|
|
|
DripDripLabel = "dripDrip"
|
|
|
|
DripFileIlkLabel = "dripFileIlk"
|
|
|
|
DripFileRepoLabel = "dripFileRepo"
|
|
|
|
DripFileVowLabel = "dripFileVow"
|
|
|
|
FlapKickLabel = "flapKick"
|
|
|
|
FlipKickLabel = "flipKick"
|
|
|
|
FlopKickLabel = "flopKick"
|
|
|
|
FrobLabel = "frob"
|
|
|
|
PitFileDebtCeilingLabel = "pitFileDebtCeiling"
|
|
|
|
PitFileIlkLabel = "pitFileIlk"
|
|
|
|
PriceFeedLabel = "priceFeed"
|
|
|
|
TendLabel = "tend"
|
|
|
|
VatFluxLabel = "vatFlux"
|
|
|
|
VatFoldLabel = "vatFold"
|
|
|
|
VatGrabLabel = "vatGrab"
|
|
|
|
VatHealLabel = "vatHeal"
|
|
|
|
VatInitLabel = "vatInit"
|
|
|
|
VatMoveLabel = "vatMove"
|
|
|
|
VatSlipLabel = "vatSlip"
|
|
|
|
VatTollLabel = "vatToll"
|
|
|
|
VatTuneLabel = "vatTune"
|
|
|
|
VowFlogLabel = "vowFlog"
|
2018-11-08 15:14:35 +00:00
|
|
|
)
|
2018-11-12 13:01:07 +00:00
|
|
|
|
|
|
|
func AllTransformerLabels() []string {
|
|
|
|
return []string{
|
|
|
|
BiteLabel,
|
|
|
|
CatFileChopLumpLabel,
|
|
|
|
CatFileFlipLabel,
|
|
|
|
CatFilePitVowLabel,
|
|
|
|
DealLabel,
|
|
|
|
DentLabel,
|
|
|
|
DripDripLabel,
|
|
|
|
DripFileIlkLabel,
|
|
|
|
DripFileRepoLabel,
|
|
|
|
DripFileVowLabel,
|
|
|
|
FlapKickLabel,
|
|
|
|
FlipKickLabel,
|
|
|
|
FlopKickLabel,
|
|
|
|
FrobLabel,
|
|
|
|
PitFileDebtCeilingLabel,
|
|
|
|
PitFileIlkLabel,
|
|
|
|
PriceFeedLabel,
|
|
|
|
TendLabel,
|
|
|
|
VatFluxLabel,
|
|
|
|
VatFoldLabel,
|
|
|
|
VatGrabLabel,
|
|
|
|
VatHealLabel,
|
|
|
|
VatInitLabel,
|
|
|
|
VatMoveLabel,
|
|
|
|
VatSlipLabel,
|
|
|
|
VatTollLabel,
|
|
|
|
VatTuneLabel,
|
|
|
|
VowFlogLabel,
|
|
|
|
}
|
2018-11-12 20:59:16 +00:00
|
|
|
}
|