Newer
Older
screenshot-server / src / main / java / com / screenshot / server / ScreenshotServerApp.java
package com.screenshot.server;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.context.properties.EnableConfigurationProperties;

@SpringBootApplication
@EnableConfigurationProperties
public class ScreenshotServerApp {

    public static void main(String[] args) {
        SpringApplication.run(ScreenshotServerApp.class, args);
    }
}