mirror of
https://github.com/k3s-io/k3s.git
synced 2026-04-06 18:05:05 -04:00
12 lines
176 B
Go
12 lines
176 B
Go
package main
|
|
|
|
import (
|
|
"github.com/k3s-io/k3s/pkg/containerd"
|
|
"k8s.io/klog/v2"
|
|
)
|
|
|
|
func main() {
|
|
klog.InitFlags(nil)
|
|
klog.EnableContextualLogging(true)
|
|
containerd.Main()
|
|
}
|