diff --git a/.gitignore b/.gitignore index c47508c..3482e69 100644 --- a/.gitignore +++ b/.gitignore @@ -6,6 +6,7 @@ build/ !gradle/wrapper/gradle-wrapper.jar !**/src/main/**/build/ !**/src/test/**/build/ +CFTunnels/ ### STS ### .apt_generated diff --git a/src/main/java/com/hithomelabs/CFTunnels/CfTunnelsApplication.java b/src/main/java/com/hithomelabs/CFTunnels/CfTunnelsApplication.java index 42bacd5..32ef9f9 100644 --- a/src/main/java/com/hithomelabs/CFTunnels/CfTunnelsApplication.java +++ b/src/main/java/com/hithomelabs/CFTunnels/CfTunnelsApplication.java @@ -1,11 +1,13 @@ package com.hithomelabs.CFTunnels; +import org.springframework.boot.SpringApplication; +import org.springframework.boot.autoconfigure.SpringBootApplication; /** * Main Spring Boot application class for Cloudflare Tunnels API. - * + * *

This application provides a RESTful API for managing Cloudflare Tunnels, * allowing users to create tunnel mappings to services with an approval workflow.

- * + * *

Features:

* - * + * *

Technology Stack:

* - * + * *

Access the API documentation at: * {@code /swagger-ui.html} for the Swagger/OpenAPI UI

- * + * * @see Cloudflare Tunnel Documentation * @since 1.0.0 */