reifydb_auth/method/mod.rs
1// SPDX-License-Identifier: Apache-2.0
2// Copyright (c) 2026 ReifyDB
3
4//! Authentication method implementations. Each owns its own credential format, verification logic and challenge
5//! state, and registers with `registry/`; adding a method means writing one module and registering it.
6
7pub mod github;
8pub mod password;
9pub mod solana;
10pub mod token;