Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
b040213 committed Oct 31, 2024
1 parent 60b34cd commit cfde047
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 8 deletions.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
package com.baloise.springtutorialbackend;
package com.baloise.app;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.ComponentScan;

@ComponentScan(basePackages = "com.baloise")
@SpringBootApplication
public class SpringTutorialBackendApplication {
public class BackendApplication {

public static void main(String[] args) {
SslUtils.disableSSLCertificateChecking();
SpringApplication.run(SpringTutorialBackendApplication.class, args);
SpringApplication.run(BackendApplication.class, args);
}

}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.baloise.springtutorialbackend;
package com.baloise.app;

import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.Bean;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.baloise.springtutorialbackend;
package com.baloise.app;

import javax.net.ssl.HostnameVerifier;
import javax.net.ssl.HttpsURLConnection;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package com.baloise.spotify;

import com.baloise.springtutorialbackend.SslUtils;
import lombok.RequiredArgsConstructor;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.http.HttpEntity;
Expand Down

0 comments on commit cfde047

Please sign in to comment.