java-api/src/main/java/restService/WalletResource.java
2019-03-31 11:40:21 +02:00

10 lines
241 B
Java

package restService;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
@RequestMapping(value = "/api/rest/wallet")
public class WalletResource {
}