Initialize Rust GPUI browser shell

This commit is contained in:
2026-05-07 18:27:15 -04:00
commit d9a27f3dc4
41 changed files with 11573 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
use thiserror::Error;
#[derive(Clone, Debug, Error, Eq, PartialEq)]
pub enum DomainError {
#[error("{field} cannot be empty")]
EmptyField { field: &'static str },
#[error("invalid URL: {value}")]
InvalidUrl { value: String },
#[error("invalid command query")]
InvalidCommand,
}