Rename runners to workers

This commit is contained in:
Joscha 2023-08-11 02:03:32 +02:00
parent 78f945647c
commit 6f4793bcf2
20 changed files with 233 additions and 237 deletions

View file

@ -9,10 +9,10 @@ fn random_id(prefix: &str, length: usize) -> String {
.collect()
}
pub fn random_runner_token() -> String {
pub fn random_worker_token() -> String {
random_id("t", 30)
}
pub fn random_runner_secret() -> String {
pub fn random_worker_secret() -> String {
random_id("s", 30)
}