torznab-toolkit/dev-notes.md

23 lines
500 B
Markdown
Raw Permalink Normal View History

2024-11-21 13:19:57 -06:00
# Dev notes
## Resources
- <https://torznab.github.io/spec-1.3-draft/index.html>
- <https://www.git.je/Mirrors/Sonarr/wiki/Implementing-a-Torznab-indexer>
- for testing: <https://fosstorrents.com/thankyou/?name=debian&cat=Installation%20-%20amd64&id=0&hybrid=0>
---
```rs
struct TorznabToolkitConfig {
auth_func: auth,
search_func: search,
whateverotherfunc: otherfunc,
port: 5309
}
fn launch() -> Result {
rocket::build().mount("/", routes![tt::search, tt:otherfunc])
}
```