docs: clarify artwork URL generation capabilities in service descriptions

Signed-off-by: Deluan <deluan@navidrome.org>
This commit is contained in:
Deluan 2025-12-31 14:53:17 -05:00
parent 0ec82e83f6
commit 5c087a12af
3 changed files with 4 additions and 4 deletions

View File

@ -2,7 +2,7 @@ package host
import "context"
// ArtworkService provides artwork URL generation capabilities for plugins.
// ArtworkService provides artwork public URL generation capabilities for plugins.
//
// This service allows plugins to generate public URLs for artwork images of
// various entity types (artists, albums, tracks, playlists). The generated URLs

View File

@ -35,7 +35,7 @@ Then import the package in your plugin code:
The following host services are available:
- Artwork: provides artwork URL generation capabilities for plugins.
- Artwork: provides artwork public URL generation capabilities for plugins.
- Cache: provides in-memory TTL-based caching capabilities for plugins.
- KVStore: provides persistent key-value storage for plugins.
- Library: provides access to music library metadata for plugins.

View File

@ -32,7 +32,7 @@
//!
//! # Available Services
//!
//! - [`artwork`] - provides artwork URL generation capabilities for plugins.
//! - [`artwork`] - provides artwork public URL generation capabilities for plugins.
//! - [`cache`] - provides in-memory TTL-based caching capabilities for plugins.
//! - [`kvstore`] - provides persistent key-value storage for plugins.
//! - [`library`] - provides access to music library metadata for plugins.
@ -42,7 +42,7 @@
#[doc(hidden)]
mod nd_host_artwork;
/// provides artwork URL generation capabilities for plugins.
/// provides artwork public URL generation capabilities for plugins.
pub mod artwork {
pub use super::nd_host_artwork::*;
}