lix 0.16.0

Embeddable version control for apps and AI agents.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use serde_json::Value as JsonValue;

pub(crate) fn is_seed_schema_key(schema_key: &str) -> bool {
    super::builtin::is_seed_schema_key(schema_key)
}

pub(crate) fn seed_schema_definition(schema_key: &str) -> Option<&'static JsonValue> {
    super::builtin::seed_schema_definition(schema_key)
}

pub(crate) fn seed_schema_definitions() -> Vec<&'static JsonValue> {
    super::builtin::seed_schema_definitions()
}