changed project structure, added models, logics, service, requests and responses

This commit is contained in:
strawmanbobi
2019-06-08 12:02:59 +08:00
parent 3011291070
commit 85145090db
30 changed files with 1193 additions and 26 deletions

12
pom.xml
View File

@@ -9,7 +9,7 @@
<packaging>jar</packaging>
<name>IRext Private Server</name>
<description>Decoding IR binaries online</description>
<description>IRext Private Server</description>
<parent>
<groupId>org.springframework.boot</groupId>
@@ -80,6 +80,16 @@
<artifactId>okio</artifactId>
<version>2.2.2</version>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.6.2</version>
</dependency>
<dependency>
<groupId>javax.ws.rs</groupId>
<artifactId>javax.ws.rs-api</artifactId>
<version>2.0.1</version>
</dependency>
</dependencies>
<build>