Compare commits
No commits in common. "162f03fcedd32f8da943d429a5e97427be67e490" and "ccac5b984270f23d666ee0551a606f69909153e1" have entirely different histories.
162f03fced
...
ccac5b9842
3 changed files with 5 additions and 5 deletions
|
@ -4,7 +4,7 @@ A safe, multi-threaded toolkit for adding Torznab APIs to programs. You just foc
|
|||
|
||||
Just fill in your own relevant functions and config, and torznab-toolkit will run the API for you
|
||||
|
||||
```rust
|
||||
```rs
|
||||
use torznab_toolkit;
|
||||
let config: torznab_toolkit::config::Config = /* config goes here */
|
||||
|
||||
|
@ -23,7 +23,7 @@ Note: I wrote the line above when I was tired. Don't ask me what *literal* truck
|
|||
|
||||
| API call | Explanation | Implemented |
|
||||
| -------- | ------------------------------------------------------------ | ----------- |
|
||||
| caps | Returns the capabilities of the api. | ✅ |
|
||||
| caps | Returns the capabilities of the api. | ❌ |
|
||||
| search | Free text search query. | ❌ |
|
||||
| tvsearch | Search query with tv specific query params and filtering. | ❌ |
|
||||
| movie | Search query with movie specific query params and filtering. | ❌ |
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
|
||||
example usage:
|
||||
|
||||
```rust
|
||||
```rs
|
||||
let config = /* config goes here */
|
||||
|
||||
fn main() -> Result {
|
||||
|
@ -25,7 +25,7 @@ fn main() -> Result {
|
|||
|
||||
Queries are returned as an RSS feed something like this:
|
||||
|
||||
```rusts
|
||||
```rss
|
||||
<rss version="1.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:torznab="http://torznab.com/schemas/2015/feed">
|
||||
<channel>
|
||||
<atom:link rel="self" type="application/rss+xml" />
|
||||
|
|
|
@ -6,7 +6,7 @@ use std::collections::HashMap;
|
|||
/// HashMap equivalent of vec![]
|
||||
///
|
||||
/// Example:
|
||||
/// ```rust
|
||||
/// ```rs
|
||||
/// hashmap!(("key", "value"))
|
||||
/// ```
|
||||
macro_rules! hashmap {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue