mirror of
https://github.com/jxxghp/MoviePilot-Plugins.git
synced 2026-05-23 07:26:47 +00:00
8 lines
132 B
Python
8 lines
132 B
Python
from typing import Literal
|
|
|
|
from .proxybase import ProxyBase
|
|
|
|
|
|
class DirectProxy(ProxyBase):
|
|
type: Literal['direct'] = 'direct'
|