mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-05 06:21:24 +00:00
17 lines
414 B
Python
17 lines
414 B
Python
|
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||
|
|
||
|
go_library(
|
||
|
name = "ssh_config",
|
||
|
srcs = [
|
||
|
"config.go",
|
||
|
"lexer.go",
|
||
|
"parser.go",
|
||
|
"position.go",
|
||
|
"token.go",
|
||
|
"validators.go",
|
||
|
],
|
||
|
importmap = "peridot.resf.org/vendor/github.com/kevinburke/ssh_config",
|
||
|
importpath = "github.com/kevinburke/ssh_config",
|
||
|
visibility = ["//visibility:public"],
|
||
|
)
|