blob: 61ffc365f45e7e8807cbf12ed5a6e6bd07d3db73 [file] [log] [blame]
# 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",
)