Files
novem/src/api/repo.rs

18 lines
275 B
Rust
Raw Normal View History

2026-04-20 15:13:26 +01:00
use crate::query;
#[derive(Clone)]
pub struct List;
impl query::QueryFn for List {
type Data = ();
type Error = ();
fn key(&self) -> &'static str {
"repo.list"
}
async fn run(&self) -> Result<Self::Data, Self::Error> {
todo!()
}
}