| # Copyright 2024 The Fuchsia Authors. All rights reserved. | |
| # Use of this source code is governed by a BSD-style license that can be | |
| # found in the LICENSE file. | |
| load("@io_bazel_rules_go//go:def.bzl", "go_library") | |
| package(default_visibility = ["//visibility:public"]) | |
| go_library( | |
| name = "isatty", | |
| srcs = [ | |
| "isatty.go", | |
| "isatty_darwin.go", | |
| "isatty_linux.go", | |
| "isatty_stub.go", | |
| ], | |
| importpath = "go.fuchsia.dev/fuchsia/tools/lib/isatty", | |
| ) |