heddle-objects 0.8.0

An AI-native version control system
Documentation
1
2
3
4
5
6
7
8
// SPDX-License-Identifier: Apache-2.0
//! Utilities for first-class Gitlink tree entries.

use sley::ObjectId as GitObjectId;

pub fn gitlink_placeholder_bytes(target: &GitObjectId) -> Vec<u8> {
    format!("Heddle Gitlink placeholder\nTarget: {target}\n").into_bytes()
}