upleb.uk

Public git repos — served from a NIP-34 GRASP relay at git.upleb.uk

summaryrefslogtreecommitdiff
path: root/grasp-audit/src/specs/grasp01/mod.rs
diff options
context:
space:
mode:
authorDanConwayDev <DanConwayDev@protonmail.com>2025-11-26 03:53:31 +0000
committerDanConwayDev <DanConwayDev@protonmail.com>2025-11-26 03:53:31 +0000
commit963b2971ec2f43b1c2f669a969c294fc1d291d3b (patch)
tree9495d5bd350ebf5123a9c72b9da3367b17e5534f /grasp-audit/src/specs/grasp01/mod.rs
parent75f3da90edb66b81dbb6ed9806155f6bd7925fe1 (diff)
add cors support
Diffstat (limited to 'grasp-audit/src/specs/grasp01/mod.rs')
-rw-r--r--grasp-audit/src/specs/grasp01/mod.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/grasp-audit/src/specs/grasp01/mod.rs b/grasp-audit/src/specs/grasp01/mod.rs
index 495672a..8b29f8c 100644
--- a/grasp-audit/src/specs/grasp01/mod.rs
+++ b/grasp-audit/src/specs/grasp01/mod.rs
@@ -1,11 +1,13 @@
1//! GRASP-01 specification tests 1//! GRASP-01 specification tests
2 2
3pub mod cors;
3pub mod event_acceptance_policy; 4pub mod event_acceptance_policy;
4pub mod git_clone; 5pub mod git_clone;
5pub mod nip01_smoke; 6pub mod nip01_smoke;
6pub mod nip11_document; 7pub mod nip11_document;
7pub mod repository_creation; 8pub mod repository_creation;
8 9
10pub use cors::CorsTests;
9pub use event_acceptance_policy::EventAcceptancePolicyTests; 11pub use event_acceptance_policy::EventAcceptancePolicyTests;
10pub use git_clone::GitCloneTests; 12pub use git_clone::GitCloneTests;
11pub use nip01_smoke::Nip01SmokeTests; 13pub use nip01_smoke::Nip01SmokeTests;