Skip to content

Commit

Permalink
add files for discover server
Browse files Browse the repository at this point in the history
  • Loading branch information
escoffier committed Jul 17, 2020
1 parent 40b04a9 commit 602c0b3
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
package com.discoverserver;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.netflix.eureka.server.EnableEurekaServer;

@SpringBootApplication
@EnableEurekaServer
public class DiscoverServerApplication {

public static void main(String[] args) {
SpringApplication.run(DiscoverServerApplication.class, args);
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
package com.discoverserver;

import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;

@RunWith(SpringRunner.class)
@SpringBootTest
public class DiscoverServerApplicationTests {

@Test
public void contextLoads() {
}

}

0 comments on commit 602c0b3

Please sign in to comment.