mirror of
https://github.com/hpd840321/craftlabs-authorization-sdk.git
synced 2026-06-09 18:10:30 +08:00
8 lines
176 B
Rust
8 lines
176 B
Rust
// Heartbeat logic — periodic license validation
|
|
|
|
use crate::{CraftContext, CraftResult};
|
|
|
|
pub fn do_heartbeat(_ctx: &CraftContext) -> CraftResult {
|
|
crate::ok_result()
|
|
}
|