diff --git a/src/repository/mod.rs b/src/repository/mod.rs
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..392d39da5720a2e7d6953647b3c370e9ff728cd1 100644
--- a/src/repository/mod.rs
+++ b/src/repository/mod.rs
@@ -0,0 +1 @@
+pub mod notification;
\ No newline at end of file
diff --git a/src/repository/notification.rs b/src/repository/notification.rs
new file mode 100644
index 0000000000000000000000000000000000000000..bb8898f5728385522b450bed42563e2f49d34e94
--- /dev/null
+++ b/src/repository/notification.rs
@@ -0,0 +1,15 @@
+use std::sync::RwLock;
+
+use lazy_static::lazy_static;
+
+use crate::model::notification::Notification;
+
+lazy_static! {
+    static ref NOTIFICATIONS: RwLock<vec<Notification>> = RwLock::new(vec![]);
+}
+
+pub struct NotificationRepository;
+
+impl NotificationRepository {
+    
+}
\ No newline at end of file