mirror of
https://github.com/kanidm/kanidm.git
synced 2025-02-23 20:47:01 +01:00
8 lines
261 B
Rust
8 lines
261 B
Rust
|
use serde::{Deserialize, Serialize};
|
||
|
|
||
|
/* This is the definition for extra data to be sent along with a pam_prompt
|
||
|
* request. It will be sent back to the idprovider to continue an auth attempt.
|
||
|
*/
|
||
|
#[derive(Serialize, Deserialize, Debug)]
|
||
|
pub struct PamData {}
|