nix based ci

This commit is contained in:
Robin Appelman 2023-11-30 20:56:43 +01:00
commit 295231ae92
7 changed files with 2232 additions and 54 deletions

View file

@ -161,7 +161,7 @@ pub enum DbConnect {
}
impl Database {
pub fn url<'a>(&self) -> String {
pub fn url(&self) -> String {
match self {
Database::Sqlite { database } => {
format!("sqlite://{}", database.display())