mirror of
https://github.com/tailscale/tailscale.git
synced 2024-11-30 05:25:35 +00:00
97b8c4fa1b
Drops tailscaled from 23M to 21M. Change-Id: I731c542d03113ac94abb695e3c8fcacbc5542712 Signed-off-by: Brad Fitzpatrick <bradfitz@tailscale.com>
21 lines
467 B
Go
21 lines
467 B
Go
// Copyright (c) 2021 Tailscale Inc & AUTHORS All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
//go:build !linux || ts_omit_aws
|
|
// +build !linux ts_omit_aws
|
|
|
|
package awsstore
|
|
|
|
import (
|
|
"fmt"
|
|
"runtime"
|
|
|
|
"tailscale.com/ipn"
|
|
"tailscale.com/types/logger"
|
|
)
|
|
|
|
func New(logger.Logf, string) (ipn.StateStore, error) {
|
|
return nil, fmt.Errorf("AWS store is not supported on %v", runtime.GOOS)
|
|
}
|