blob: 2cef2057da3a8ba90f2ecb8eb00c62b7693118cf [file] [log] [blame]
package com.example.g8backend;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.scheduling.annotation.EnableScheduling;
@SpringBootApplication()
@EnableScheduling
public class G8BackendApplication {
public static void main(String[] args) {
SpringApplication.run(G8BackendApplication.class, args);
}
}