Files
windmill/backend/windmill-api/src/ee.rs
Ruben Fiszel 20dfbda69e fix: fix build
2024-05-10 01:24:46 +02:00

7 lines
210 B
Rust

use anyhow::anyhow;
pub async fn validate_license_key(_license_key: String) -> anyhow::Result<String> {
// Implementation is not open source
Err(anyhow!("License can't be validated in Windmill CE"))
}