first commit
This commit is contained in:
13
agent/src/main/java/io/wdd/agent/AgentApplication.java
Normal file
13
agent/src/main/java/io/wdd/agent/AgentApplication.java
Normal file
@@ -0,0 +1,13 @@
|
||||
package io.wdd.agent;
|
||||
|
||||
import org.springframework.boot.SpringApplication;
|
||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||
|
||||
@SpringBootApplication
|
||||
public class AgentApplication {
|
||||
|
||||
public static void main(String[] args) {
|
||||
SpringApplication.run(AgentApplication.class, args);
|
||||
}
|
||||
|
||||
}
|
||||
2
agent/src/main/resources/application.yml
Normal file
2
agent/src/main/resources/application.yml
Normal file
@@ -0,0 +1,2 @@
|
||||
server:
|
||||
port: 8000
|
||||
13
agent/src/test/java/io/wdd/agent/AgentApplicationTests.java
Normal file
13
agent/src/test/java/io/wdd/agent/AgentApplicationTests.java
Normal file
@@ -0,0 +1,13 @@
|
||||
package io.wdd.agent;
|
||||
|
||||
import org.junit.jupiter.api.Test;
|
||||
import org.springframework.boot.test.context.SpringBootTest;
|
||||
|
||||
@SpringBootTest
|
||||
class AgentApplicationTests {
|
||||
|
||||
@Test
|
||||
void contextLoads() {
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user