melors 0.2.2

Keyboard-first terminal MP3 player with queue, search, and tag editing
1
2
3
4
5
6
7
8
9
10
11
12
13
use std::cmp::min;
use std::collections::hash_map::DefaultHasher;
use std::fmt;
use std::hash::{Hash, Hasher};

use crate::app::App;

mod cache;
mod mode;
mod model;
mod playlists;

pub use model::{FocusPanel, InputMode, PlaylistModalMode, UiState, UiTheme, VisualizerMode};