[ISSUE-114] Add comprehensive JavaDoc and documentation to CFTunnels #115

Merged
hitanshu merged 14 commits from Dave/CFTunnels:ISSUE-114 into main 2026-04-18 13:28:28 +00:00
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);
} }
} }