rust backend WIP

This commit is contained in:
folex
2019-08-14 22:15:38 +03:00
parent b810a0eb6f
commit 496cc60f00
7 changed files with 167 additions and 53 deletions

View File

@ -0,0 +1,5 @@
use std::error::Error;
pub fn err_msg(s: &str) -> Box<dyn Error> {
Error(s.to_string()).into()
}