From 5ad6acbd008b74d78a7b71c0f2dfe5deb5cfcb8e Mon Sep 17 00:00:00 2001 From: hitanshu310 Date: Sat, 18 Apr 2026 22:15:53 +0530 Subject: [PATCH] Fixing breaking build due to import errors, Hithomelabs/CFTunnels#114 --- .gitignore | 1 + .../hithomelabs/CFTunnels/CfTunnelsApplication.java | 12 +++++++----- 2 files changed, 8 insertions(+), 5 deletions(-) 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 */