mirror of
https://github.com/Geniusay/ChopperBot.git
synced 2026-09-03 14:28:22 +08:00
15 lines
346 B
Java
15 lines
346 B
Java
package org.example;
|
|
|
|
import org.springframework.boot.SpringApplication;
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
|
|
/**
|
|
* Hello world!
|
|
*/
|
|
@SpringBootApplication(scanBasePackages = {"org.example"})
|
|
public class App {
|
|
public static void main(String[] args) {
|
|
SpringApplication.run(App.class, args);
|
|
}
|
|
}
|