mirror of
https://github.com/yunionio/cloudpods.git
synced 2026-06-22 04:32:50 +08:00
8 lines
92 B
Go
8 lines
92 B
Go
package cloudcommon
|
|
|
|
import "time"
|
|
|
|
type IStartable interface {
|
|
GetStartTime() time.Time
|
|
}
|