-
Notifications
You must be signed in to change notification settings - Fork 74
Expand file tree
/
Copy pathapi.rs
More file actions
76 lines (63 loc) · 1.78 KB
/
api.rs
File metadata and controls
76 lines (63 loc) · 1.78 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
// Copyright (c) [2025] SUSE LLC
//
// All Rights Reserved.
//
// This program is free software; you can redistribute it and/or modify it
// under the terms of the GNU General Public License as published by the Free
// Software Foundation; either version 2 of the License, or (at your option)
// any later version.
//
// This program is distributed in the hope that it will be useful, but WITHOUT
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
// FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
// more details.
//
// You should have received a copy of the GNU General Public License along
// with this program; if not, contact SUSE LLC.
//
// To contact SUSE LLC about this file by physical or electronic mail, you may
// find current contact information at www.suse.com.
//! This module contains all Agama public types that might be available over
//! the HTTP and WebSocket API.
pub mod event;
pub use event::Event;
pub mod progress;
pub use progress::Progress;
pub mod scope;
pub use scope::Scope;
pub mod status;
pub use status::Status;
pub mod issue;
pub use issue::{Issue, IssueMap, IssueWithScope};
mod system_info;
pub use system_info::SystemInfo;
#[cfg(feature = "curl")]
pub mod config;
#[cfg(feature = "curl")]
pub use config::Config;
mod raw_config;
pub use raw_config::RawConfig;
#[cfg(feature = "curl")]
pub mod patch;
#[cfg(feature = "curl")]
pub use patch::Patch;
mod proposal;
pub use proposal::Proposal;
mod action;
pub use {action::Action, action::FinishMethod};
pub mod bootloader;
#[cfg(feature = "curl")]
pub mod files;
pub mod hostname;
pub mod iscsi;
pub mod l10n;
pub mod manager;
pub mod network;
pub mod proxy;
pub mod query;
pub mod question;
pub mod s390;
pub mod security;
pub mod software;
pub mod storage;
pub mod users;