Replaced super with crate where applicable

This commit is contained in:
StNicolay 2023-06-01 14:58:48 +03:00
parent a817f7f39c
commit 593f438435
Signed by: StNicolay
GPG Key ID: 9693D04DCD962B0D
2 changed files with 4 additions and 4 deletions

View File

@ -1,2 +1,2 @@
pub use super::account::*;
pub use super::master_pass::*;
pub use crate::account::*;
pub use crate::master_pass::*;

View File

@ -1,4 +1,4 @@
//! `SeaORM` Entity. Generated by sea-orm-codegen 0.11.3
pub use super::account::{self, Entity as Account};
pub use super::master_pass::{self, Entity as MasterPass};
pub use crate::account::{self, Entity as Account};
pub use crate::master_pass::{self, Entity as MasterPass};