1
0
mirror of https://github.com/rancher/os.git synced 2025-05-20 13:59:44 +00:00
os/cmd/sysinit/sysinit.go
Wang Long 9e15059789 Replace rancherio with rancher
Signed-off-by: Wang Long <long.wanglong@huawei.com>
2015-10-12 19:50:57 +08:00

13 lines
180 B
Go

package sysinit
import (
log "github.com/Sirupsen/logrus"
initPkg "github.com/rancher/os/init"
)
func Main() {
if err := initPkg.SysInit(); err != nil {
log.Fatal(err)
}
}