first working version

This commit is contained in:
tamo
2021-05-06 18:44:16 +02:00
parent 5f5402a3ab
commit 40ced3ff8d
5 changed files with 68 additions and 27 deletions

View File

@ -31,7 +31,7 @@ pub type IndexResult<T> = std::result::Result<T, IndexError>;
pub struct IndexMeta {
created_at: DateTime<Utc>,
pub updated_at: DateTime<Utc>,
primary_key: Option<String>,
pub primary_key: Option<String>,
}
impl IndexMeta {