File: __init__.py

package info (click to toggle)
python-go2rtc-client 0.2.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 684 kB
  • sloc: python: 945; makefile: 3
file content (7 lines) | stat: -rw-r--r-- 219 bytes parent folder | download
1
2
3
4
5
6
7
"""go2rtc client."""

from . import ws
from .models import Stream, WebRTCSdpAnswer, WebRTCSdpOffer
from .rest import Go2RtcRestClient

__all__ = ["Go2RtcRestClient", "Stream", "WebRTCSdpAnswer", "WebRTCSdpOffer", "ws"]