telemetry service and telemetry agents interface

This commit is contained in:
2026-03-05 16:26:30 +00:00
parent c9086cae56
commit e65358ea1d
16 changed files with 388 additions and 314 deletions
+6
View File
@@ -0,0 +1,6 @@
// Package conversions will host all of our unit conversion functions
package conversions
func MsToKph(v float32) int {
return int((3600 * v) / 1000)
}