| // Copyright 2019-2023 Tauri Programme within The Commons Conservancy | |
| // SPDX-License-Identifier: Apache-2.0 | |
| // SPDX-License-Identifier: MIT | |
| use std::path::PathBuf; | |
| use serde::Deserialize; | |
| pub enum Application { | |
| Default, | |
| Enable(bool), | |
| App(String), | |
| } | |
| pub(crate) enum EntryRaw { | |
| Url { | |
| url: String, | |
| app: Application, | |
| }, | |
| Path { | |
| path: PathBuf, | |
| app: Application, | |
| }, | |
| } | |