fix(core/database): use attachments collection name

This commit is contained in:
Paul Makles
2023-09-03 17:43:13 +01:00
parent 9929f7499a
commit eb1f45d208

View File

@@ -6,7 +6,7 @@ use crate::MongoDb;
use super::AbstractAttachments;
static COL: &str = "bots";
static COL: &str = "attachments";
#[async_trait]
impl AbstractAttachments for MongoDb {