Skip to content

Commit

Permalink
Merge pull request #327 from LucasMLK/develop
Browse files Browse the repository at this point in the history
upgrade rpc
  • Loading branch information
LucasMLK authored Dec 31, 2024
2 parents 3924296 + a2414fe commit 0d18683
Show file tree
Hide file tree
Showing 198 changed files with 6,928 additions and 5,677 deletions.
4 changes: 4 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"java.compile.nullAnalysis.mode": "automatic",
"java.configuration.updateBuildConfiguration": "interactive"
}
291 changes: 77 additions & 214 deletions pom.xml

Large diffs are not rendered by default.

9 changes: 9 additions & 0 deletions src/main/java/io/xdag/Bootstrap.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,17 @@

import io.xdag.cli.XdagCli;

/**
* Bootstrap class that serves as the entry point for the XDAG application
*/
public class Bootstrap {

/**
* Main method that launches the XDAG CLI application
*
* @param args Command line arguments passed to the application
* @throws Exception If any error occurs during application startup
*/
public static void main(String[] args) throws Exception {
XdagCli.main(args);
}
Expand Down
Loading

0 comments on commit 0d18683

Please sign in to comment.