Files
Webflux-Payments/src/main/java/com/test/payment/PaymentApplication.java
spiro-alvin-nyasimi cd186868fa Updates
2026-08-17 16:20:13 +03:00

18 lines
542 B
Java

package com.test.payment;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.data.jpa.repository.config.EnableJpaRepositories;
import org.springframework.scheduling.annotation.EnableScheduling;
@SpringBootApplication
@EnableScheduling
@EnableJpaRepositories(basePackages = "com.test.payment.repository")
public class PaymentApplication {
public static void main(String[] args) {
SpringApplication.run(PaymentApplication.class, args);
}
}