mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-03-10 18:43:09 +03:00
13 lines
361 B
TypeScript
13 lines
361 B
TypeScript
|
|
// Telemetry Section Component
|
||
|
|
// Global telemetry configuration settings
|
||
|
|
|
||
|
|
import { createConfigSection } from "./BaseSection";
|
||
|
|
import { getSectionConfig } from "../sectionConfigs";
|
||
|
|
|
||
|
|
export const TelemetrySection = createConfigSection({
|
||
|
|
sectionPath: "telemetry",
|
||
|
|
defaultConfig: getSectionConfig("telemetry", "global"),
|
||
|
|
});
|
||
|
|
|
||
|
|
export default TelemetrySection;
|