hexser_potions/
lib.rs

1//! Hex Potions: ready-to-mix patterns and examples for the hexser crate.
2//!
3//! Potions are small, focused, and copy-friendly examples that show how to
4//! assemble common hexagonal architecture operations with `hexser`.
5//!
6//! Goals:
7//! - Demonstrate idiomatic component shapes for common scenarios
8//! - Stay dependency-free and simple
9//! - Serve as living documentation you can paste into your app
10//!
11//! Featured potions:
12//! - auth::signup - Minimal signup flow with a repository and directive
13//! - crud::simple - Simple in-memory CRUD repository example
14//!
15//! Usage:
16//! - Browse modules, copy what you need, and adapt to your domain
17//! - All examples compile and have tests
18
19pub mod auth;
20pub mod crud;
21
22pub use hexser as core; // convenient alias if you want to explore in docs