Add basic foxglove extension for analysis
This patch is the result of running the following:
$ cd aos/analysis/
$ ../../tools/foxglove/create-foxglove-extension foxglove_extension
and committing the generated changes.
Future patches will remove the example panel and add actually useful
functionality.
Signed-off-by: Philipp Schrader <philipp.schrader@gmail.com>
Change-Id: I131be7dab022ed9bfde7cc606d650928c955d0be
diff --git a/aos/analysis/foxglove_extension/src/index.ts b/aos/analysis/foxglove_extension/src/index.ts
new file mode 100644
index 0000000..63b17eb
--- /dev/null
+++ b/aos/analysis/foxglove_extension/src/index.ts
@@ -0,0 +1,6 @@
+import { ExtensionContext } from "@foxglove/studio";
+import { initExamplePanel } from "./ExamplePanel";
+
+export function activate(extensionContext: ExtensionContext): void {
+ extensionContext.registerPanel({ name: "example-panel", initPanel: initExamplePanel });
+}