mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 14:25:02 +00:00
- Introduced `Server` class for managing the Media Daemon, including configuration, lifecycle, and HTTP route handling. - Added `TvEngine` class for managing TV channels, scheduling, EPG generation, and streaming functionalities. - Created `types.hpp` to define various data structures and enums for jobs, radio, TV channels, and plugins. - Implemented main entry point in `main.cpp` to initialize and run the Media Daemon server with command-line and environment variable configurations. - Established error handling and result management using a generic `Result` class. - Included necessary headers and dependencies for media processing and plugin management.
10 lines
262 B
TypeScript
10 lines
262 B
TypeScript
import React from 'react'
|
|
import { Icon, IconProps } from './Icon'
|
|
|
|
export const Refresh = (props: IconProps) => (
|
|
<Icon {...props}>
|
|
<polyline points="176.2 99.7 224.2 99.7 224.2 51.7" />
|
|
<path d="M190.2 190.2a88 88 0 1 1 0-124.4l34 34" />
|
|
</Icon>
|
|
)
|