imag/libimagentrymarkdown/src/link.rs

9 lines
125 B
Rust
Raw Normal View History

2016-05-23 12:11:32 +00:00
use result::Result;
pub type Link = String;
pub fn extract_links(buf: &str) -> Result<Vec<Link>> {
unimplemented!()
}