pfs-intra/src/main/java/com/primefactorsolutions/Application.java

24 lines
647 B
Java
Raw Normal View History

2024-07-25 01:14:40 +00:00
package com.primefactorsolutions;
import com.vaadin.flow.component.page.AppShellConfigurator;
import com.vaadin.flow.theme.Theme;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
/**
* The entry point of the Spring Boot application.
*
* Use the @PWA annotation make the application installable on phones, tablets
* and some desktop browsers.
*
*/
@SpringBootApplication
2024-08-11 17:48:33 +00:00
@Theme(value = "pfs-intra")
2024-07-25 01:14:40 +00:00
public class Application implements AppShellConfigurator {
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}
}