Automatically create admin on first start

This commit is contained in:
2022-03-29 19:32:31 +02:00
parent 2d062320a7
commit b4e8113706
13 changed files with 1773 additions and 2 deletions

2
src/utils/err.rs Normal file
View File

@ -0,0 +1,2 @@
use std::error::Error;
pub type Res<A = ()> = Result<A, Box<dyn Error>>;