mirror of
https://github.com/rancher/os.git
synced 2025-05-19 05:20:07 +00:00
13 lines
182 B
Go
13 lines
182 B
Go
package sysinit
|
|
|
|
import (
|
|
log "github.com/Sirupsen/logrus"
|
|
initPkg "github.com/rancherio/os/init"
|
|
)
|
|
|
|
func Main() {
|
|
if err := initPkg.SysInit(); err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
}
|