6 lines
84 B
Java
6 lines
84 B
Java
|
package config;
|
||
|
|
||
|
public interface BaseConfig {
|
||
|
void init() throws Exception;
|
||
|
}
|