Skip to content

Commit

Permalink
Add support for Downloads APIs (#276)
Browse files Browse the repository at this point in the history
  • Loading branch information
Quentame authored Dec 12, 2023
1 parent c815f02 commit 2beb469
Show file tree
Hide file tree
Showing 2 changed files with 398 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/freebox_api/aiofreepybox.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
from freebox_api.api.call import Call
from freebox_api.api.connection import Connection
from freebox_api.api.dhcp import Dhcp
from freebox_api.api.download import Download
from freebox_api.api.freeplug import Freeplug
from freebox_api.api.fs import Fs
from freebox_api.api.ftp import Ftp
Expand Down Expand Up @@ -113,6 +114,7 @@ async def open(self, host: str, port: str) -> None:
self.freeplug = Freeplug(self._access)
self.call = Call(self._access)
self.connection = Connection(self._access)
self.download = Download(self._access)
self.home = Home(self._access)
self.parental = Parental(self._access)
self.netshare = Netshare(self._access)
Expand Down
Loading

0 comments on commit 2beb469

Please sign in to comment.