refactor: outputdestination.rs -> comm/output_destination.rs

This commit is contained in:
graelo 2021-03-20 22:58:09 +01:00
parent 9426d8bfee
commit 16fa4d45c1
6 changed files with 12 additions and 5 deletions

View file

@ -8,7 +8,7 @@ use termion::{self, color, cursor, event, style};
use super::colors::UiColors;
use super::Selection;
use super::{HintAlignment, HintStyle};
use crate::{output_destination::OutputDestination, textbuf};
use crate::{comm::OutputDestination, textbuf};
pub struct ViewController<'a> {
model: &'a mut textbuf::Model<'a>,