mirror of
https://github.com/aljazceru/lnd-manageJ.git
synced 2026-01-23 16:04:30 +01:00
16 lines
480 B
Java
16 lines
480 B
Java
package de.cotto.lndmanagej;
|
|
|
|
import org.springframework.boot.SpringApplication;
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
import org.springframework.scheduling.annotation.EnableAsync;
|
|
import org.springframework.scheduling.annotation.EnableScheduling;
|
|
|
|
@EnableAsync
|
|
@EnableScheduling
|
|
@SpringBootApplication
|
|
public class Application {
|
|
public static void main(String[] arguments) {
|
|
SpringApplication.run(Application.class, arguments);
|
|
}
|
|
}
|