├── .gitignore ├── Dockerfile ├── README.md ├── TODO.md ├── config.yml.example ├── go.mod ├── go.sum ├── main.go └── modules ├── config ├── main.go └── structs.go ├── debrid └── main.go ├── overseerr ├── anime │ ├── handler.go │ └── main.go ├── movies │ ├── handler.go │ ├── main.go │ └── structs.go └── tv │ ├── handler.go │ ├── main.go │ └── structs.go ├── plex └── main.go ├── structs └── main.go └── torrentio ├── anime └── main.go ├── main.go ├── movies └── main.go └── tv └── main.go /.gitignore: -------------------------------------------------------------------------------- 1 | config.yml 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushyDev/pod-link/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushyDev/pod-link/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushyDev/pod-link/HEAD/TODO.md -------------------------------------------------------------------------------- /config.yml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushyDev/pod-link/HEAD/config.yml.example -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module pod-link 2 | 3 | go 1.20 4 | 5 | require gopkg.in/yaml.v3 v3.0.1 6 | -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushyDev/pod-link/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushyDev/pod-link/HEAD/main.go -------------------------------------------------------------------------------- /modules/config/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushyDev/pod-link/HEAD/modules/config/main.go -------------------------------------------------------------------------------- /modules/config/structs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushyDev/pod-link/HEAD/modules/config/structs.go -------------------------------------------------------------------------------- /modules/debrid/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushyDev/pod-link/HEAD/modules/debrid/main.go -------------------------------------------------------------------------------- /modules/overseerr/anime/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushyDev/pod-link/HEAD/modules/overseerr/anime/handler.go -------------------------------------------------------------------------------- /modules/overseerr/anime/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushyDev/pod-link/HEAD/modules/overseerr/anime/main.go -------------------------------------------------------------------------------- /modules/overseerr/movies/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushyDev/pod-link/HEAD/modules/overseerr/movies/handler.go -------------------------------------------------------------------------------- /modules/overseerr/movies/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushyDev/pod-link/HEAD/modules/overseerr/movies/main.go -------------------------------------------------------------------------------- /modules/overseerr/movies/structs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushyDev/pod-link/HEAD/modules/overseerr/movies/structs.go -------------------------------------------------------------------------------- /modules/overseerr/tv/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushyDev/pod-link/HEAD/modules/overseerr/tv/handler.go -------------------------------------------------------------------------------- /modules/overseerr/tv/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushyDev/pod-link/HEAD/modules/overseerr/tv/main.go -------------------------------------------------------------------------------- /modules/overseerr/tv/structs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushyDev/pod-link/HEAD/modules/overseerr/tv/structs.go -------------------------------------------------------------------------------- /modules/plex/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushyDev/pod-link/HEAD/modules/plex/main.go -------------------------------------------------------------------------------- /modules/structs/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushyDev/pod-link/HEAD/modules/structs/main.go -------------------------------------------------------------------------------- /modules/torrentio/anime/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushyDev/pod-link/HEAD/modules/torrentio/anime/main.go -------------------------------------------------------------------------------- /modules/torrentio/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushyDev/pod-link/HEAD/modules/torrentio/main.go -------------------------------------------------------------------------------- /modules/torrentio/movies/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushyDev/pod-link/HEAD/modules/torrentio/movies/main.go -------------------------------------------------------------------------------- /modules/torrentio/tv/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SushyDev/pod-link/HEAD/modules/torrentio/tv/main.go --------------------------------------------------------------------------------