openai_protocol/
lib.rs

1//! OpenAI-compatible protocol types and utilities
2//!
3//! This crate is under development as part of the Shepherd project.
4
5/// Placeholder for future implementation
6pub fn version() -> &'static str {
7    env!("CARGO_PKG_VERSION")
8}
9
10#[cfg(test)]
11mod tests {
12    use super::*;
13
14    #[test]
15    fn test_version() {
16        assert_eq!(version(), "0.0.1");
17    }
18}