Skip to main content

atelier_agentic/
lib.rs

1#![forbid(unsafe_code)]
2
3/// Returns the crate name.
4pub fn package_name() -> &'static str {
5    "atelier-agentic"
6}
7
8/// Returns the publishing space / organization for this crate.
9pub fn published_by() -> &'static str {
10    "knottdynamics"
11}
12
13#[cfg(test)]
14mod tests {
15    use super::*;
16
17    #[test]
18    fn test_package_name() {
19        assert_eq!(package_name(), "atelier-agentic");
20    }
21}