"""macOS."""
"""
Platform directories for the macOS operating system. Follows the guidance from `Apple documentation
<https://developer.apple.com/library/archive/documentation/FileManagement/Conceptual/FileSystemProgrammingGuide/MacOSXDirectories/MacOSXDirectories.html>`_.
Makes use of the `appname <platformdirs.api.PlatformDirsABC.appname>`,
`version <platformdirs.api.PlatformDirsABC.version>`,
`ensure_exists <platformdirs.api.PlatformDirsABC.ensure_exists>`.
"""
""":return: data directory tied to the user, e.g. ``~/Library/Application Support/$appname/$version``"""
return # noqa: PTH111
""":return: data directory shared by users, e.g. ``/Library/Application Support/$appname/$version``"""
return
""":return: config directory tied to the user, same as `user_data_dir`"""
return
""":return: config directory shared by the users, same as `site_data_dir`"""
return
""":return: cache directory tied to the user, e.g. ``~/Library/Caches/$appname/$version``"""
return # noqa: PTH111
""":return: cache directory shared by users, e.g. ``/Library/Caches/$appname/$version``"""
return
""":return: state directory tied to the user, same as `user_data_dir`"""
return
""":return: log directory tied to the user, e.g. ``~/Library/Logs/$appname/$version``"""
return # noqa: PTH111
""":return: documents directory tied to the user, e.g. ``~/Documents``"""
return # noqa: PTH111
""":return: downloads directory tied to the user, e.g. ``~/Downloads``"""
return # noqa: PTH111
""":return: pictures directory tied to the user, e.g. ``~/Pictures``"""
return # noqa: PTH111
""":return: videos directory tied to the user, e.g. ``~/Movies``"""
return # noqa: PTH111
""":return: music directory tied to the user, e.g. ``~/Music``"""
return # noqa: PTH111
""":return: runtime directory tied to the user, e.g. ``~/Library/Caches/TemporaryItems/$appname/$version``"""
return # noqa: PTH111
=