Create scraping library to get match data
To use it, you need to make a JSON config file which gets stored
at the workspace root or you pass the path into the function(s)
Change-Id: I9d074c7ad84c45b418eb5be8b316a84b022db835
Signed-off-by: Het Satasiya <satasiyahet@gmail.com>
diff --git a/scouting/scraping/BUILD b/scouting/scraping/BUILD
new file mode 100644
index 0000000..58db2b1
--- /dev/null
+++ b/scouting/scraping/BUILD
@@ -0,0 +1,12 @@
+load("@io_bazel_rules_go//go:def.bzl", "go_library")
+
+go_library(
+ name = "scraping",
+ srcs = [
+ "scrape.go",
+ "types.go",
+ ],
+ importpath = "github.com/frc971/971-Robot-Code/scouting/scraping",
+ target_compatible_with = ["@platforms//cpu:x86_64"],
+ visibility = ["//visibility:public"],
+)