github.com/liamawhite/cli-with-i18n@v6.32.1-0.20171122084555-dede0a5c3448+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 ConfiguringServices Event = "configuring services" 13 BoundServices Event = "bound services" 14 CreatingArchive Event = "creating archive" 15 ResourceMatching Event = "resource matching" 16 UploadingApplication Event = "uploading application" 17 UploadComplete Event = "upload complete" 18 RetryUpload Event = "retry upload" 19 Complete Event = "complete" 20 )