mirror of
https://github.com/tailscale/tailscale.git
synced 2025-02-18 02:48:40 +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")
|
||
|
}
|