Adds a new section "Scripting" in the server UI where PowerShell modules can be defined. These can be used for defining a library of functions that can be used in any script. These modules are automatically synced to the launcher and imported upon script execution.
6 lines
149 B
C#
6 lines
149 B
C#
namespace LANCommander.SDK.Models;
|
|
|
|
public class ModuleSettings
|
|
{
|
|
public string StoragePath { get; set; } = AppPaths.GetConfigPath("Modules");
|
|
}
|