1 package clonestatus 2 3 type CloneStatus string 4 5 const ( 6 Failed CloneStatus = "FAILED" 7 Cloning CloneStatus = "CLONING" 8 Complete CloneStatus = "COMPLETE" 9 ) 10
View as plain text