This commit is contained in:
Lauri Räsänen 2022-10-01 23:58:09 +03:00
commit f88df1efd0
11 changed files with 2306 additions and 0 deletions

7
src/main.rs Normal file
View file

@ -0,0 +1,7 @@
mod surf;
fn main() {
env_logger::init();
pollster::block_on(surf::updater::run());
}