1 // Copyright 2022 The Kubernetes Authors. 2 // SPDX-License-Identifier: Apache-2.0 3 4 //go:build !windows 5 // +build !windows 6 7 package filesys 8 9 import ( 10 "path/filepath" 11 ) 12 13 func getOSRoot() (string, error) { 14 return string(filepath.Separator), nil 15 } 16