Philipp Schrader | d9096a3 | 2022-02-24 17:53:09 -0800 | [diff] [blame^] | 1 | load("@io_bazel_rules_go//go:def.bzl", "go_library") |
| 2 | |
| 3 | go_library( |
| 4 | name = "debug", |
| 5 | srcs = ["debug.go"], |
| 6 | importpath = "github.com/frc971/971-Robot-Code/scouting/webserver/requests/debug", |
| 7 | target_compatible_with = ["@platforms//cpu:x86_64"], |
| 8 | visibility = ["//visibility:public"], |
| 9 | deps = [ |
| 10 | "//scouting/webserver/requests/messages:error_response_go_fbs", |
| 11 | "//scouting/webserver/requests/messages:submit_data_scouting_response_go_fbs", |
| 12 | ], |
| 13 | ) |