com.github.netkorp.telegram.framework.SpringBootTelegramFrameworkConfiguration
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 3
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
c 0
b 0
f 0
dl 0
loc 3
eloc 3
1
package com.github.netkorp.telegram.framework;
0 ignored issues
show
Code Smell introduced by
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
Coding Style introduced by
Move this left curly brace to the beginning of next line of code.
Loading history...
11
}
12