zed-main.rs

1// Disable command line from opening on release mode
2#![cfg_attr(not(debug_assertions), windows_subsystem = "windows")]
3
4pub fn main() {
5    // separated out so that the file containing the main function can be imported by other crates,
6    // while having all gpui resources that are registered in main (primarily actions) initialized
7    zed::main();
8}