| 1 |
package com.paymentlink; |
| 2 |
|
| 3 |
import org.springframework.boot.SpringApplication; |
| 4 |
import org.springframework.boot.autoconfigure.SpringBootApplication; |
| 5 |
import org.springframework.scheduling.annotation.EnableScheduling; |
| 6 |
|
| 7 |
@SpringBootApplication |
| 8 |
@EnableScheduling |
| 9 |
public class PaymentLinkApplication { |
| 10 |
|
| 11 |
public static void main(String[] args) { |
| 12 |
SpringApplication.run(PaymentLinkApplication.class, args); |
| 13 |
System.out.println("==============================="); |
| 14 |
System.out.println(" Payment Link Service"); |
| 15 |
System.out.println(" Server running on port 3000"); |
| 16 |
System.out.println(" Webshop: http://localhost:3000"); |
| 17 |
System.out.println("==============================="); |
| 18 |
} |
| 19 |
} |
| 20 |
|
| 21 |
|