1 package libdevfile 2 3 type DevfileEventType string 4 5 const ( 6 7 // PreStop is a devfile event 8 PreStop DevfileEventType = "preStop" 9 ) 10 11 type DevfileCommands struct { 12 BuildCmd string 13 RunCmd string 14 DebugCmd string 15 } 16
View as plain text