make initial implementation

credit
- https://github.com/AlphaModder/include-lua
This commit is contained in:
Andy Weidenbaum
2021-02-04 12:16:07 +11:00
parent 187c5f55ea
commit 38c15af4dc
6 changed files with 130 additions and 15 deletions

3
src/types.rs Normal file
View File

@@ -0,0 +1,3 @@
use crate::error::Error;
pub type Result<A> = std::result::Result<A, Error>;