mirror of
https://github.com/Dangoware/dmp-core.git
synced 2025-04-19 13:22:54 -05:00
Updated from_file()
in ExternalLibrary trait
This commit is contained in:
parent
594e426a3f
commit
886fc1a3c8
1 changed files with 2 additions and 2 deletions
|
@ -2,8 +2,8 @@ use std::path::PathBuf;
|
||||||
|
|
||||||
|
|
||||||
pub trait ExternalLibrary {
|
pub trait ExternalLibrary {
|
||||||
fn from_file(&mut self, file: &PathBuf) -> Self;
|
fn from_file(file: &PathBuf) -> Self;
|
||||||
fn write(&self) {
|
fn write(&self) {
|
||||||
unimplemented!();
|
unimplemented!();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue