update,
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
package com.arjuncodes.sprintfirstapp;
|
||||
|
||||
import org.springframework.boot.SpringApplication;
|
||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||
|
||||
@SpringBootApplication
|
||||
public class SprintFirstAppApplication {
|
||||
|
||||
public static void main(String[] args) {
|
||||
SpringApplication.run(SprintFirstAppApplication.class, args);
|
||||
}
|
||||
|
||||
}
|
@@ -0,0 +1 @@
|
||||
|
@@ -0,0 +1,13 @@
|
||||
package com.arjuncodes.sprintfirstapp;
|
||||
|
||||
import org.junit.jupiter.api.Test;
|
||||
import org.springframework.boot.test.context.SpringBootTest;
|
||||
|
||||
@SpringBootTest
|
||||
class SprintFirstAppApplicationTests {
|
||||
|
||||
@Test
|
||||
void contextLoads() {
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user