1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// Copyright (c) 2026 Kirky.X
// SPDX-License-Identifier: MIT
//! Trait definitions for the security module
//!
//! This module contains the feature layer trait interfaces that define
//! the contracts for authentication and audit logging.
use crateAuditLog;
/// Feature layer trait for API key authentication.
///
/// Implement this trait to provide custom API key validation logic while
/// maintaining a consistent interface across the security module.
/// Feature layer trait for audit logging.
///
/// Implement this trait to provide custom audit logging logic while
/// maintaining a consistent interface across the security module.