10 lines
241 B
Java
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 {
|
|
}
|