aboutsummaryrefslogtreecommitdiffstats
path: root/library/go/slices/ya.make
diff options
context:
space:
mode:
authorhcpp <hcpp@ydb.tech>2023-11-08 12:09:41 +0300
committerhcpp <hcpp@ydb.tech>2023-11-08 12:56:14 +0300
commita361f5b98b98b44ea510d274f6769164640dd5e1 (patch)
treec47c80962c6e2e7b06798238752fd3da0191a3f6 /library/go/slices/ya.make
parent9478806fde1f4d40bd5a45e7cbe77237dab613e9 (diff)
downloadydb-a361f5b98b98b44ea510d274f6769164640dd5e1.tar.gz
metrics have been added
Diffstat (limited to 'library/go/slices/ya.make')
-rw-r--r--library/go/slices/ya.make34
1 files changed, 34 insertions, 0 deletions
diff --git a/library/go/slices/ya.make b/library/go/slices/ya.make
new file mode 100644
index 0000000000..97a793cfd1
--- /dev/null
+++ b/library/go/slices/ya.make
@@ -0,0 +1,34 @@
+GO_LIBRARY()
+
+SRCS(
+ chunk.go
+ contains.go
+ contains_all.go
+ contains_any.go
+ dedup.go
+ equal.go
+ filter.go
+ group_by.go
+ intersects.go
+ join.go
+ map.go
+ reverse.go
+ shuffle.go
+)
+
+GO_XTEST_SRCS(
+ chunk_test.go
+ dedup_test.go
+ equal_test.go
+ filter_test.go
+ group_by_test.go
+ intersects_test.go
+ join_test.go
+ map_test.go
+ reverse_test.go
+ shuffle_test.go
+)
+
+END()
+
+RECURSE(gotest)