Skip to content

Commit 6168a60

Browse files
authored
Merge pull request #1 from Minitour/feature/test-pitfalls
Add test_pitfalls tool for ontology quality scanning
2 parents 4be23a3 + ad5c0e5 commit 6168a60

4 files changed

Lines changed: 2452 additions & 0 deletions

File tree

src/handler.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ impl ServerHandler for OwlMcpHandler {
7373
RegisterOntologyInConfig::run_tool(p, mgr).await
7474
}
7575
OwlTools::LoadAndRegisterOntology(p) => LoadAndRegisterOntology::run_tool(p, mgr).await,
76+
OwlTools::TestPitfalls(p) => TestPitfalls::run_tool(p, mgr).await,
7677
}
7778
}
7879

src/main.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
mod config;
22
mod handler;
33
mod ontology;
4+
mod pitfalls;
45
mod tools;
56

67
use std::sync::Arc;

0 commit comments

Comments
 (0)