[ISSUE-114] Document CFTunnels codebase with JavaDoc comments #1

Open
Dave wants to merge 18 commits from ISSUE-114 into main
Showing only changes of commit 4460e86776 - Show all commits

View File

@ -33,13 +33,13 @@ package com.hithomelabs.CFTunnels;
@SpringBootApplication @SpringBootApplication
public class CfTunnelsApplication { public class CfTunnelsApplication {
/** /**
* Main entry point for the application. * Main entry point for the application.
* *
* @param args command line arguments passed to the application * @param args command line arguments passed to the application
*/ */
public static void main(String[] args) { public static void main(String[] args) {
SpringApplication.run(CfTunnelsApplication.class, args); SpringApplication.run(CfTunnelsApplication.class, args);
} }
} }