2025-04-02 17:18:39 +00:00
|
|
|
package com.alttd.altitudeweb;
|
|
|
|
|
|
2025-04-11 16:22:07 +00:00
|
|
|
import com.alttd.altitudeweb.setup.Connection;
|
2025-04-02 17:18:39 +00:00
|
|
|
import org.springframework.boot.SpringApplication;
|
|
|
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
2025-04-17 18:31:14 +00:00
|
|
|
import org.springframework.context.annotation.EnableAspectJAutoProxy;
|
2025-04-02 17:18:39 +00:00
|
|
|
|
|
|
|
|
@SpringBootApplication
|
2025-04-17 18:31:14 +00:00
|
|
|
@EnableAspectJAutoProxy
|
2025-04-02 17:18:39 +00:00
|
|
|
public class AltitudeWebApplication {
|
|
|
|
|
|
|
|
|
|
public static void main(String[] args) {
|
2025-04-11 16:22:07 +00:00
|
|
|
Connection.initDatabases();
|
2025-05-30 21:41:13 +00:00
|
|
|
SpringApplication.run(AltitudeWebApplication.class, args);
|
2025-04-02 17:18:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|