rs-plugin-lookup-interfaces

Crates.iors-plugin-lookup-interfaces
lib.rsrs-plugin-lookup-interfaces
version0.11.0
sourcesrc
created_at2024-04-03 20:10:02.606423
updated_at2024-04-05 08:13:27.519257
descriptionCommon description for plugin creation
homepagehttps://github.com/neckaros/rs-plugin-lookup-interfaces/
repositoryhttps://github.com/neckaros/rs-plugin-lookup-interfaces/
max_upload_size
id1195506
size4,209
Arnaud Jezequel (neckaros)

documentation

README

Interfaces for episodes/movies/Actors... and Media Lookup

Like every other plugins you must implement an info request

#[plugin_fn]
pub fn infos() -> FnResult<Json<PluginInformation>> {
    Ok(Json(
        PluginInformation { name: "xxxx_request".into(), kind: PluginType::Lookup, version: 1, publisher: "neckaros".into(), description: "descruption".into(), credential_kind: Some(CredentialType::Token), ..Default::default() }
    ))
}
```
Commit count: 7

cargo fmt