posture: add get serial stub for all platforms

Updates #5902

Signed-off-by: Kristoffer Dalby <kristoffer@tailscale.com>
This commit is contained in:
Kristoffer Dalby
2023-10-03 11:50:00 +02:00
committed by Kristoffer Dalby
parent 623926a25d
commit 9593cd3871
2 changed files with 12 additions and 0 deletions

View File

@@ -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")
}