From 0dc3a4e7bed2c015855379029e1cdde7f62e7cb0 Mon Sep 17 00:00:00 2001 From: wwan13 Date: Thu, 20 Jun 2024 16:44:45 +0900 Subject: [PATCH] fix : remove application class --- .../WinterSecurityApplication.java | 29 ------------------- 1 file changed, 29 deletions(-) delete mode 100644 src/main/java/io/wwan13/wintersecurity/WinterSecurityApplication.java diff --git a/src/main/java/io/wwan13/wintersecurity/WinterSecurityApplication.java b/src/main/java/io/wwan13/wintersecurity/WinterSecurityApplication.java deleted file mode 100644 index 98211d7..0000000 --- a/src/main/java/io/wwan13/wintersecurity/WinterSecurityApplication.java +++ /dev/null @@ -1,29 +0,0 @@ -/* - * Copyright 2024 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package io.wwan13.wintersecurity; - -import org.springframework.boot.SpringApplication; -import org.springframework.boot.autoconfigure.SpringBootApplication; - -@SpringBootApplication -public class WinterSecurityApplication { - - public static void main(String[] args) { - SpringApplication.run(WinterSecurityApplication.class, args); - } - -}