Play images and video from Synology PhotoStation server

__init__.py 509B

123456789101112131415161718
  1. # -*- coding: utf-8 -*-
  2. """
  3. kodiswift.cli
  4. ----------------
  5. This package contains modules that are used only when running kodiswift in
  6. CLI mode. Nothing from this package should be called from addon code.
  7. :copyright: (c) 2012 by Jonathan Beluch
  8. :license: GPLv3, see LICENSE for more details.
  9. """
  10. def Option(*args, **kwargs):
  11. """Returns a tuple of args, kwargs passed to the function. Useful for
  12. recording arguments for future function calls.
  13. """
  14. return args, kwargs