mirror of
https://github.com/k3s-io/k3s.git
synced 2026-07-14 04:23:15 -04:00
Some checks failed
govulncheck / govulncheck (push) Has been cancelled
Signed-off-by: Brad Davidson <brad.davidson@rancher.com>
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()
|
|
}
|