Remove todos

This commit is contained in:
Joscha 2023-08-14 17:51:48 +02:00
parent b0eb94a02a
commit 3cf444ffc2
2 changed files with 1 additions and 3 deletions

View file

@ -212,7 +212,6 @@ impl ConfigFile {
}
}
// TODO Url functions
#[derive(Clone)]
pub struct WorkerServerConfig {
/// Always ends without a `/`.

View file

@ -76,9 +76,8 @@ impl RunInProgress {
}
pub async fn perform(&self, server: &Server) -> Option<FinishedRun> {
// TODO Remove type annotations
// TODO Handle aborts
let result: somehow::Result<_> = match &self.run.bench_method {
let result = match &self.run.bench_method {
BenchMethod::Internal => self.perform_internal(server),
BenchMethod::Repo { hash } => todo!(),
}