doum
2025-12-16 4c378cf3e00af58f9e9f32ccffe538a4f85fc34b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.doumee.lib_coremodel.config;
 
 
/**
 * @author <a href="mailto:jenly1314@gmail.com">Jenly</a>
 */
public abstract class FrameConfigModule implements AppliesOptions {
 
    /**
     * 是否启用解析配置
     * @return 默认返回{@code true}
     */
    public boolean isManifestParsingEnabled() {
        return true;
    }
 
}