fmt
This commit is contained in:
parent
fef2dee92a
commit
1c6d7f7a8f
4 changed files with 15 additions and 8 deletions
|
|
@ -36,7 +36,8 @@ impl Approvals {
|
|||
}
|
||||
let conn = Connection::open(path)
|
||||
.with_context(|| format!("open approvals db {}", path.display()))?;
|
||||
conn.execute_batch(SCHEMA).context("apply approvals schema")?;
|
||||
conn.execute_batch(SCHEMA)
|
||||
.context("apply approvals schema")?;
|
||||
Ok(Self {
|
||||
conn: Mutex::new(conn),
|
||||
})
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue