nut-shell 0.1.2

A lightweight command-line interface library for embedded systems
Documentation
1
2
3
4
5
6
7
8
//! Credential provider implementations for authentication.
//!
//! `ConstCredentialProvider` for testing (hardcoded credentials).

pub mod const_provider;

/// Testing/demo provider with hardcoded credentials (not for production).
pub use const_provider::ConstCredentialProvider;