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..7ccb81666410de0a8e33e9e96d1df0d37bddff60
--- /dev/null
+++ b/src/repository/notification.rs
@@ -0,0 +1,14 @@
+use lazy_static::lazy_static;
+use rocket::tokio::sync::RwLock;
+
+use crate::model::notification::Notification;
+
+lazy_static! {
+    static ref NOIIFICATIONS: RwLock<Vec<Notification>> = RwLock::new(Vec::new());
+}
+
+pub struct NotificationRepository;
+
+impl NotificationRepository {
+
+}
\ No newline at end of file