mirror of
https://github.com/tailscale/tailscale.git
synced 2025-04-18 12:32:13 +00:00
12 lines
266 B
Go
12 lines
266 B
Go
// 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")
|
|
}
|