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