2015-06-30 07:49:13 +08:00
|
|
|
// +build !linux
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/Sirupsen/logrus"
|
|
|
|
"github.com/codegangsta/cli"
|
|
|
|
)
|
|
|
|
|
2015-07-02 00:57:26 +08:00
|
|
|
type User struct {
|
|
|
|
NOTSUPPORTED string
|
|
|
|
}
|
|
|
|
|
2015-06-30 07:49:13 +08:00
|
|
|
func getDefaultID() string {
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
var (
|
|
|
|
checkpointCommand cli.Command
|
|
|
|
eventsCommand cli.Command
|
|
|
|
restoreCommand cli.Command
|
|
|
|
)
|
|
|
|
|
|
|
|
func runAction(*cli.Context) {
|
|
|
|
logrus.Fatal("Current OS is not supported yet")
|
|
|
|
}
|