mirror of
https://github.com/kemko/nomad.git
synced 2026-01-03 17:05:43 +03:00
12 lines
175 B
Go
12 lines
175 B
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
//go:build darwin
|
|
// +build darwin
|
|
|
|
package host
|
|
|
|
func mountedPaths() []string {
|
|
return []string{"/"}
|
|
}
|