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