1
0
Code Issues Pull Requests Packages Projects Releases Wiki Activity GitHub Gitee

数据库调整;microservice-api改为microservice-pojo;创建gateway Module

This commit is contained in:
2022-11-05 19:08:28 +08:00
parent 9bd12755fe
commit bbcccb81ca
12 changed files with 354 additions and 370 deletions

View File

@@ -0,0 +1,13 @@
package com.cxyxiaomo;
/**
* Hello world!
*
*/
public class App
{
public static void main( String[] args )
{
System.out.println( "Hello World!" );
}
}

View File

@@ -0,0 +1,20 @@
package com.cxyxiaomo;
import static org.junit.Assert.assertTrue;
import org.junit.Test;
/**
* Unit test for simple App.
*/
public class AppTest
{
/**
* Rigorous Test :-)
*/
@Test
public void shouldAnswerWithTrue()
{
assertTrue( true );
}
}