mirror of https://github.com/tailscale/tailscale/
posture: add get serial stub for all platforms
Updates #5902 Signed-off-by: Kristoffer Dalby <kristoffer@tailscale.com>pull/9665/head
parent
623926a25d
commit
9593cd3871
@ -0,0 +1,11 @@
|
||||
// Copyright (c) Tailscale Inc & AUTHORS
|
||||
// SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
package posture
|
||||
|
||||
import "errors"
|
||||
|
||||
// GetSerialNumber returns client machine serial number(s).
|
||||
func GetSerialNumbers() ([]string, error) {
|
||||
return nil, errors.New("not implemented")
|
||||
}
|
Loading…
Reference in New Issue