mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-05 14:31:22 +00:00
18 lines
469 B
Python
18 lines
469 B
Python
|
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||
|
|
||
|
go_library(
|
||
|
name = "diffmatchpatch",
|
||
|
srcs = [
|
||
|
"diff.go",
|
||
|
"diffmatchpatch.go",
|
||
|
"match.go",
|
||
|
"mathutil.go",
|
||
|
"operation_string.go",
|
||
|
"patch.go",
|
||
|
"stringutil.go",
|
||
|
],
|
||
|
importmap = "peridot.resf.org/vendor/github.com/sergi/go-diff/diffmatchpatch",
|
||
|
importpath = "github.com/sergi/go-diff/diffmatchpatch",
|
||
|
visibility = ["//visibility:public"],
|
||
|
)
|