You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
469 B

  1. package com.example.fefund;
  2. import org.springframework.boot.SpringApplication;
  3. import org.springframework.boot.autoconfigure.SpringBootApplication;
  4. import org.springframework.context.annotation.ComponentScan;
  5. @SpringBootApplication
  6. @ComponentScan(basePackages = {"com.example.commons.security","com.example.fefund"})
  7. public class FefundApplication {
  8. public static void main(String[] args) {
  9. SpringApplication.run(FefundApplication.class, args);
  10. }
  11. }