Files
File: src/main/java/com/paymentlink/controller/web/CartController.java
| 1 | package com.paymentlink.controller.web; |
| 2 | |
| 3 | import org.springframework.stereotype.Controller; |
| 4 | import org.springframework.web.bind.annotation.GetMapping; |
| 5 | |
| 6 | |
| 7 | public class CartController { |
| 8 | |
| 9 | |
| 10 | public String cart() { |
| 11 | return "cart"; |
| 12 | } |
| 13 | } |
| 14 | |
| 15 |