18 lines
364 B
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package org.jcnc.jnotepad.constants;
/**
* 路径常量
*
* @author gewuyou
*/
public class PathConstants {
private PathConstants() {
}
/**
* 快捷键配置文件路径
* todo这里这个配置可以通过配置文件读取
*/
public static final String SHORTCUT_KEY_CONFIGURATION_FILE_PATH = "/config/shortcutKey.json";
}