File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed
Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -9,9 +9,9 @@ use std::{
99
1010pub mod printer;
1111
12- pub struct Blossom { }
12+ pub struct Blush { }
1313
14- impl Blossom {
14+ impl Blush {
1515 pub fn build ( path : String ) -> Result < ( ) , Box < dyn Error > > {
1616 let path_buf = PathBuf :: from ( path) ;
1717 let file_tree = collect_files ( & path_buf) ?;
File renamed without changes.
Original file line number Diff line number Diff line change 11#![ allow( dead_code) ]
22
3- use blossom :: Blossom ;
3+ use blush :: Blush ;
44use clap:: { Parser , Subcommand } ;
55
6- mod blossom ;
6+ mod blush ;
77mod checker;
88mod codegen;
99mod ir;
@@ -42,13 +42,13 @@ fn main() {
4242 match cli. command {
4343 Commands :: Build { path } => {
4444 println ! ( ) ;
45- let res = Blossom :: build ( path) ;
45+ let res = Blush :: build ( path) ;
4646 match res {
4747 Ok ( ( ) ) => {
48- blossom :: printer:: success ( "Build complete!" ) ;
48+ blush :: printer:: success ( "Build complete!" ) ;
4949 }
5050 Err ( err) => {
51- blossom :: printer:: error ( & format ! ( "Error: {err}" ) ) ;
51+ blush :: printer:: error ( & format ! ( "Error: {err}" ) ) ;
5252 }
5353 }
5454 println ! ( "\n " ) ;
You can’t perform that action at this time.
0 commit comments