2023-01-27 21:37:20 +00:00
|
|
|
// Copyright (c) Tailscale Inc & AUTHORS
|
|
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
2021-08-17 23:03:28 +01:00
|
|
|
|
2022-06-06 21:52:52 +01:00
|
|
|
//go:build ios || android || js
|
2021-08-17 23:03:28 +01:00
|
|
|
|
|
|
|
package localapi
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
"runtime"
|
|
|
|
)
|
|
|
|
|
|
|
|
func (h *Handler) serveCert(w http.ResponseWriter, r *http.Request) {
|
|
|
|
http.Error(w, "disabled on "+runtime.GOOS, http.StatusNotFound)
|
|
|
|
}
|