blob: 857f5b5572a081e54411e9780eae85b53612e827 [file] [log] [blame]
Tim Windelschmidt5f5f3302024-02-22 23:50:24 +01001load("@io_bazel_rules_go//go:def.bzl", "go_library")
2
3go_library(
Jan Schär0175d7a2025-03-26 12:57:23 +00004 name = "sshtakeover",
5 srcs = ["sshtakeover.go"],
6 importpath = "source.monogon.dev/osbase/net/sshtakeover",
Tim Windelschmidt5f5f3302024-02-22 23:50:24 +01007 visibility = ["//visibility:public"],
8 deps = [
Jan Schär5fdca562025-04-14 11:33:29 +00009 "//osbase/structfs",
Tim Windelschmidt5f5f3302024-02-22 23:50:24 +010010 "@com_github_pkg_sftp//:sftp",
11 "@org_golang_x_crypto//ssh",
12 ],
13)