File name/path

Where did he put the config?

You can modify the file name and path through your @Configuration annotation.

import com.github.secretx33.sccfg.api.annotation.Configuration;

// all of those annotations are valid options

// @Configuration("myconfig")
// @Configuration("myconfig.yml")
// @Configuration("folder/anotherfolder/myconfig.yml")
public class MyConfig {
    // ...
}

Last updated