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