Save Torch config on server start, remove concealment code (moved to plugin)

This commit is contained in:
John Gross
2017-04-18 10:58:23 -07:00
parent 32f5147060
commit 03a22851af
8 changed files with 23 additions and 379 deletions

View File

@@ -37,7 +37,7 @@ namespace Torch.Server
if (File.Exists(configName))
options = TorchConfig.LoadFrom(configName);
else
options.SaveTo(configName);
options.Save(configName);
_server = new TorchServer(options);
_server.Init();