Ping server regularly

This commit is contained in:
Joscha 2023-08-11 01:29:05 +02:00
parent 33607779b0
commit 0ae43c608f
5 changed files with 380 additions and 8 deletions

View file

@ -12,3 +12,7 @@ fn random_id(prefix: &str, length: usize) -> String {
pub fn random_runner_token() -> String {
random_id("t", 30)
}
pub fn random_runner_secret() -> String {
random_id("s", 30)
}