tiempo-rs/src/editor.rs

7 lines
132 B
Rust
Raw Normal View History

2021-06-18 11:27:19 -05:00
use crate::error;
use crate::config::Config;
2021-06-18 11:27:19 -05:00
2021-07-15 00:22:38 -05:00
pub fn get_string(_config: &Config) -> error::Result<String> {
2021-06-18 11:27:19 -05:00
unimplemented!()
}