refactor: migrate devices to store

This commit is contained in:
Jef Roosens 2025-03-15 19:01:38 +01:00
parent b1fa048081
commit 6bb3e8a27f
No known key found for this signature in database
GPG key ID: 21FD3D77D56BAF49
4 changed files with 25 additions and 10 deletions

View file

@ -10,7 +10,7 @@ pub fn serve(config: &crate::config::Config) -> u8 {
let ctx = server::Context {
repo: repo.clone(),
store: crate::gpodder::GpodderRepository::new(Box::new(repo)),
store: crate::gpodder::GpodderRepository::new(repo),
};
let app = server::app(ctx);