mirror of
https://github.com/opencontainers/runc.git
synced 2025-09-26 19:41:35 +08:00

gofumpt (mvdan.cc/gofumpt) is a fork of gofmt with stricter rules. Brought to you by git ls-files \*.go | grep -v ^vendor/ | xargs gofumpt -s -w Looking at the diff, all these changes make sense. Also, replace gofmt with gofumpt in golangci.yml. Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com>
8 lines
174 B
Go
8 lines
174 B
Go
// +build !linux
|
|
|
|
package configs
|
|
|
|
// TODO Windows: This can ultimately be entirely factored out on Windows as
|
|
// cgroups are a Unix-specific construct.
|
|
type Cgroup struct{}
|