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