summaryrefslogtreecommitdiffstats
path: root/src/exiting/exiting.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/exiting/exiting.rs')
-rw-r--r--src/exiting/exiting.rs17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/exiting/exiting.rs b/src/exiting/exiting.rs
deleted file mode 100644
index ef13fa4..0000000
--- a/src/exiting/exiting.rs
+++ /dev/null
@@ -1,17 +0,0 @@
-use crate::git_interactive::GitInteractive;
-use crate::process::ProcessModule;
-use crate::view::View;
-
-pub struct Exiting {}
-
-impl ProcessModule for Exiting {
- fn render(&self, view: &View, _git_interactive: &GitInteractive) {
- view.draw_str("Exiting...")
- }
-}
-
-impl Exiting {
- pub fn new() -> Self {
- Self {}
- }
-}