1207dfc2c0c033a5af3042b7bfd0829d1a6a62d3
self import in delete.rs
The original line `use crate::db::self;` was invalid because `self` cannot be used in a `use` statement outside of a list. Changed to `use crate::db;` to properly import the module.
Description
Languages
Rust
99.5%
Shell
0.3%
Dockerfile
0.2%