diff options
| author | DanConwayDev <DanConwayDev@protonmail.com> | 2025-11-28 03:00:18 +0000 |
|---|---|---|
| committer | DanConwayDev <DanConwayDev@protonmail.com> | 2025-11-28 03:00:18 +0000 |
| commit | c15215d704117d1035806e3b5f71afc19f5516a8 (patch) | |
| tree | 85b62fabe24e40af5c36122bb6eefb3b69b6a5c3 /grasp-audit/src/lib.rs | |
| parent | 15892018705b3b4ca42586174518319adc224c0e (diff) | |
fix grasp-audit imports
Diffstat (limited to 'grasp-audit/src/lib.rs')
| -rw-r--r-- | grasp-audit/src/lib.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/grasp-audit/src/lib.rs b/grasp-audit/src/lib.rs index 5eb9b71..3d11bd8 100644 --- a/grasp-audit/src/lib.rs +++ b/grasp-audit/src/lib.rs | |||
| @@ -19,11 +19,11 @@ | |||
| 19 | //! // Create audit client for CI testing | 19 | //! // Create audit client for CI testing |
| 20 | //! let config = AuditConfig::ci(); | 20 | //! let config = AuditConfig::ci(); |
| 21 | //! let client = AuditClient::new("ws://localhost:7000", config).await?; | 21 | //! let client = AuditClient::new("ws://localhost:7000", config).await?; |
| 22 | //! | 22 | //! |
| 23 | //! // Run smoke tests | 23 | //! // Run smoke tests |
| 24 | //! let results = specs::nip01_smoke::Nip01SmokeTests::run_all(&client).await; | 24 | //! let results = specs::Nip01SmokeTests::run_all(&client).await; |
| 25 | //! results.print_report(); | 25 | //! results.print_report(); |
| 26 | //! | 26 | //! |
| 27 | //! Ok(()) | 27 | //! Ok(()) |
| 28 | //! } | 28 | //! } |
| 29 | //! ``` | 29 | //! ``` |
| @@ -35,7 +35,7 @@ pub mod isolation; | |||
| 35 | pub mod result; | 35 | pub mod result; |
| 36 | pub mod specs; | 36 | pub mod specs; |
| 37 | 37 | ||
| 38 | pub use audit::{AuditConfig, AuditMode}; | 38 | pub use audit::{AuditConfig, AuditEventBuilder, AuditMode}; |
| 39 | pub use client::AuditClient; | 39 | pub use client::AuditClient; |
| 40 | pub use fixtures::{ | 40 | pub use fixtures::{ |
| 41 | // Git operation helpers | 41 | // Git operation helpers |