Skip to content

Commit

Permalink
chore:rename module, imports
Browse files Browse the repository at this point in the history
  • Loading branch information
cedricschwyter committed Jul 1, 2023
1 parent d2ca1f5 commit 1722b89
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 9 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
"build:client": "vite build",
"preview": "vite preview",
"check": "svelte-check --tsconfig ./tsconfig.json",
"bindings:debug": "cd src-tauri && cargo run -- --generate-bindings-only",
"bindings:release": "cd src-tauri && cargo run --release -- --generate-bindings-only",
"bindings:debug": "cd src-tauri && cargo run -q -- --generate-bindings-only",
"bindings:release": "cd src-tauri && cargo run -q --release -- --generate-bindings-only",
"dev": "yarn run bindings:debug && tauri dev",
"build": "yarn run bindings:release && tauri build",
"release": "standard-version"
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src-tauri/core/mod.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#[macro_use]
pub mod macros;
pub mod endpoints;
pub mod handlers;
pub mod transfer;
9 changes: 3 additions & 6 deletions src-tauri/main.rs
Original file line number Diff line number Diff line change
@@ -1,12 +1,9 @@
// Prevents additional console window on Windows in release, DO NOT REMOVE!!
#![cfg_attr(not(debug_assertions), windows_subsystem = "windows")]

use huehuehue::bindings;
use huehuehue::core::endpoints::*;
use huehuehue::huehuehue_handlers;
use huehuehue::HueHueHue;
use huehuehue::HueHueHueError;
use huehuehue::HueHueHueState;
use huehuehue::{
bindings, core::handlers::*, huehuehue_handlers, HueHueHue, HueHueHueError, HueHueHueState,
};
use log::info;
use tauri::RunEvent;
use tokio::sync::Mutex;
Expand Down

0 comments on commit 1722b89

Please sign in to comment.