initial commit

This commit is contained in:
2026-04-20 15:13:26 +01:00
commit b521c4e4a0
22 changed files with 956 additions and 0 deletions

17
src/api/repo.rs Normal file
View File

@@ -0,0 +1,17 @@
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!()
}
}