forked from proxmox-mirrors/proxmox

previously this type lived inside of pom. this made it harder to access the product type from a `SubscriptionInfo` trait in other products. move the type here so we can check product types more consistently across products (e. g. in pom and pbs) Signed-off-by: Stefan Sterz <s.sterz@proxmox.com>
9 lines
177 B
Rust
9 lines
177 B
Rust
mod subscription_info;
|
|
pub use subscription_info::{
|
|
get_hardware_address, ProductType, SubscriptionInfo, SubscriptionStatus,
|
|
};
|
|
|
|
pub mod check;
|
|
pub mod files;
|
|
pub mod sign;
|