mirror of
https://gitee.com/san-bing/JChargePointProtocol
synced 2026-05-09 04:19:55 +08:00
15 lines
289 B
Java
15 lines
289 B
Java
|
|
/**
|
|||
|
|
* 抖音关注:程序员三丙
|
|||
|
|
* 知识星球:https://t.zsxq.com/j9b21
|
|||
|
|
*/
|
|||
|
|
package sanbing.jcpp.protocol.provider;
|
|||
|
|
|
|||
|
|
import sanbing.jcpp.protocol.cfg.ProtocolCfg;
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* @author baigod
|
|||
|
|
*/
|
|||
|
|
public interface ProtocolsConfigProvider {
|
|||
|
|
|
|||
|
|
ProtocolCfg loadConfig(String protocol);
|
|||
|
|
}
|