lix 0.12.1

Embeddable version control for apps and AI agents.
Documentation
1
2
3
4
5
use crate::LixError;

pub(crate) fn unsupported(message: impl Into<String>) -> LixError {
    LixError::new(LixError::CODE_UNSUPPORTED_SQL, message.into())
}