| Crates.io | hoicko_rows |
| lib.rs | hoicko_rows |
| version | 0.1.7 |
| created_at | 2025-01-09 11:40:46.985502+00 |
| updated_at | 2025-04-29 04:56:59.447577+00 |
| description | Hoicko library |
| homepage | https://hoicko.com |
| repository | |
| max_upload_size | |
| id | 1509854 |
| size | 91,763 |
PRIVATE REPOSITORY - CONFIDENTIAL
Internal Rust library for handling Hoicko activity and notification payloads.
This is a private, proprietary library owned by Hoicko. All rights reserved. Unauthorized access, use, or distribution is prohibited.
Add to your Cargo.toml:
[dependencies]
hoicko_rows = { version = "0.1.0", registry = "hoicko-private" }
use hoicko_rows::{ActivityAction, ActivityType, ActivityPayload, NotificationPayload};
// Create an activity payload
let activity = ActivityPayload::new(
ActivityAction::Insert,
ActivityType::Board,
"doc123".to_string(),
"domain123".to_string(),
"user123".to_string(),
);
// Create a notification
let notification = NotificationPayload::new(
"Title".to_string(),
"Body".to_string(),
"NOTIFICATION".to_string(),
"from123".to_string(),
"to123".to_string(),
"domain123".to_string(),
);
This repository contains proprietary code. Do not share or distribute.
Copyright © 2024 Hoicko. All rights reserved. Proprietary and confidential.