001package com.ericlam.mc.bungee.hnmc.config.yaml;
002
003import java.io.IOException;
004
005public interface FileController {
006
007    <T extends BungeeConfiguration> void save(T config) throws IOException;
008
009    <T extends BungeeConfiguration> void reload(T config);
010
011}