github.com/jghiloni/cli@v6.28.1-0.20170628223758-0ce05fe032a2+incompatible/actor/pushaction/event.go (about)

     1  package pushaction
     2  
     3  type Event string
     4  
     5  const (
     6  	SettingUpApplication Event = "setting up application"
     7  	CreatedApplication   Event = "created application"
     8  	UpdatedApplication   Event = "updated application"
     9  	ConfiguringRoutes    Event = "configuring routes"
    10  	CreatedRoutes        Event = "created routes"
    11  	BoundRoutes          Event = "bound routes"
    12  	CreatingArchive      Event = "creating archive"
    13  	UploadingApplication Event = "uploading application"
    14  	UploadComplete       Event = "upload complete"
    15  	RetryUpload          Event = "retry upload"
    16  	Complete             Event = "complete"
    17  )