File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
schemacrawler-ai-mcp/src/main/java/schemacrawler/tools/command/aichat/mcp Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change 22
33import org .springframework .boot .SpringApplication ;
44import org .springframework .boot .autoconfigure .SpringBootApplication ;
5-
6-
5+ import schemacrawler .tools .command .aichat .mcp .SpringAIUtility ;
76
87/**
98 * Spring Boot application for the SchemaCrawler AI MCP server. This class enables the Spring AI MCP
1211@ SpringBootApplication
1312public class SchemaCrawlerMcpServer {
1413
15- public static void main (final String [] args ) {
14+ // Set isDryRun to true in a static initializer block so it's always set before any tests run
15+ static {
1616 SpringAIUtility .isDryRun = true ;
17+ }
18+
19+ public static void main (final String [] args ) {
1720 start ();
1821 }
1922
You can’t perform that action at this time.
0 commit comments