mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-19 16:02:14 +00:00
7 lines
210 B
Rust
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"))
|
|
}
|