aristo-core 0.1.0

Aristo SDK core: shared types, .aristo/index.toml schema, B5b verification, language registry.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Re-export shim — the real auth module lives at
//! [`aristo_core::auth`](crate::auth).
//!
//! The canon::auth path was the original home for token resolution
//! when the canon API was the only consumer. Auth is now foundational
//! SDK infrastructure (future server-side features will also need it),
//! so the real code lives at [`crate::auth`] and this shim exists so
//! in-flight callers don't break in the same commit that moves the
//! code. New code should import from [`crate::auth`] directly.

pub use crate::auth::*;