rename codegen -> boilerplate_gen

This commit is contained in:
Aleksey Kladov
2019-08-19 11:39:12 +03:00
parent 5633829a16
commit aa250ff612
2 changed files with 3 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
mod codegen;
mod boilerplate_gen;
use std::{
collections::HashMap,
@@ -11,7 +11,7 @@ use std::{
use itertools::Itertools;
pub use self::codegen::generate;
pub use self::boilerplate_gen::generate_boilerplate;
pub type Result<T> = std::result::Result<T, Box<dyn Error>>;