1 package snapshotshipstatus 2 3 type SnapshotShipStatus string 4 5 const ( 6 Running SnapshotShipStatus = "Running" 7 Complete SnapshotShipStatus = "Complete" 8 ) 9
View as plain text