Removed session as separate code.

This commit is contained in:
2023-03-26 09:30:42 -04:00
parent c75bea3913
commit ee45375085
3 changed files with 9 additions and 39 deletions

View File

@ -1,6 +1,12 @@
use async_std::{fs::{read, remove_file, write}, path::PathBuf};
use super::{DataType, DBError, ErrorCode, FileData, SessionData};
use std::{cell::Cell, time::{Duration, Instant}};
use super::{DBError, DataType, ErrorCode, FileData, SessionData};
use async_std::{
fs::{read, remove_file, write},
path::PathBuf,
};
use std::{
cell::Cell,
time::{Duration, Instant},
};
pub struct Entry {
data: DataType,