14 lines
390 B
Rust
14 lines
390 B
Rust
#[cfg(feature = "private")]
|
|
#[allow(unused)]
|
|
pub use crate::ee::*;
|
|
|
|
#[cfg(not(feature = "private"))]
|
|
pub async fn set_license_key(_license_key: String, _db: Option<&windmill_common::db::DB>) -> () {
|
|
// Implementation is not open source
|
|
}
|
|
|
|
#[cfg(all(feature = "enterprise", not(feature = "private")))]
|
|
pub async fn verify_license_key() -> () {
|
|
// Implementation is not open source
|
|
}
|