Spaces:
Runtime error
Runtime error
Create SecureAuthApplication.java
Browse files
src/main/java/com/example/SecureAuthApplication.java
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
// src/main/java/com/example/SecureAuthApplication.java
|
| 2 |
+
|
| 3 |
+
package com.example;
|
| 4 |
+
|
| 5 |
+
import org.springframework.boot.SpringApplication;
|
| 6 |
+
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
| 7 |
+
|
| 8 |
+
@SpringBootApplication
|
| 9 |
+
public class SecureAuthApplication {
|
| 10 |
+
public static void main(String[] args) {
|
| 11 |
+
SpringApplication.run(SecureAuthApplication.class, args);
|
| 12 |
+
}
|
| 13 |
+
}
|