mirror of
https://github.com/hpd840321/craftlabs-authorization-sdk.git
synced 2026-06-09 18:10:30 +08:00
10 lines
364 B
Rust
10 lines
364 B
Rust
// Activation logic — communicates with BitAnswer cloud or self-hosted backend
|
|
|
|
use crate::CraftResult;
|
|
|
|
/// Core activation logic — communicates with BitAnswer cloud or self-hosted backend
|
|
pub fn core_activate(_license_key: &str, _config_json: &str) -> CraftResult {
|
|
// TODO: actual network communication based on config provider
|
|
crate::ok_result()
|
|
}
|