blob: 2cef2057da3a8ba90f2ecb8eb00c62b7693118cf [file] [log] [blame]
wuchimedesa1bf2782025-03-27 15:08:54 +08001package com.example.g8backend;
2
3import org.springframework.boot.SpringApplication;
4import org.springframework.boot.autoconfigure.SpringBootApplication;
223010719e7ca122025-06-03 23:26:44 +08005import org.springframework.scheduling.annotation.EnableScheduling;
wuchimedesa1bf2782025-03-27 15:08:54 +08006
wuchimedes223bfab2025-04-04 17:16:05 +08007@SpringBootApplication()
223010719e7ca122025-06-03 23:26:44 +08008@EnableScheduling
wuchimedesa1bf2782025-03-27 15:08:54 +08009public class G8BackendApplication {
10
11 public static void main(String[] args) {
12 SpringApplication.run(G8BackendApplication.class, args);
13 }
14
15}