mirror of
https://github.com/EFForg/rayhunter.git
synced 2026-06-18 10:29:44 -07:00
d942545ac3
command was: sh <(curl https://create.tauri.app/sh) the chosen options were: Project name · installer-gui Identifier · com.rayhunter-installer.app Choose which language to use for your frontend · TypeScript / JavaScript - (pnpm, yarn, npm, deno, bun) Choose your package manager · npm Choose your UI template · Svelte - (https://svelte.dev/) Choose your UI flavor · TypeScript
7 lines
188 B
Rust
7 lines
188 B
Rust
// Prevents additional console window on Windows in release, DO NOT REMOVE!!
|
|
#![cfg_attr(not(debug_assertions), windows_subsystem = "windows")]
|
|
|
|
fn main() {
|
|
installer_gui_lib::run()
|
|
}
|