Issues (369)

SpringBootTelegramFrameworkConfiguration.java (2 issues)

1
package com.github.netkorp.telegram.framework;
0 ignored issues
show
It is a best practice to supply a copyright/licence header in your code. Your organisation probably has a template for that.
Loading history...
2
3
import org.springframework.context.annotation.ComponentScan;
4
import org.springframework.context.annotation.Configuration;
5
import org.springframework.context.annotation.PropertySource;
6
7
@Configuration
8
@ComponentScan
9
@PropertySource({"classpath:spring-boot-telegram-framework.properties"})
10
public class SpringBootTelegramFrameworkConfiguration {
0 ignored issues
show
Move this left curly brace to the beginning of next line of code.
Loading history...
11
}
12