From a243ed246facd950ffe19c6debac01d6f4fb25d4 Mon Sep 17 00:00:00 2001 From: DawnFall19 <ignasius.michael09@gmail.com> Date: Fri, 28 Mar 2025 17:36:29 +0700 Subject: [PATCH] Fix typo --- src/repository/notification.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/repository/notification.rs b/src/repository/notification.rs index 1c7aad0..af1b5d9 100644 --- a/src/repository/notification.rs +++ b/src/repository/notification.rs @@ -6,7 +6,7 @@ use crate::model::notification::Notification; //Singleton of Database lazy_static! { - static ref NOTIFICATIONS: RwLock<Vec<Notification>> = RwLock::new(Vec![]); + static ref NOTIFICATIONS: RwLock<Vec<Notification>> = RwLock::new(vec![]); } pub struct NotificationRepository; -- GitLab