7b6f1eb9ad
* Fingers crossed this will fix the mod loading issue for configs * Renamed classes and documentation for clarity * Remove some extra traces of the old PreSptLoader * Renamed interface for clarity and updated docs * Re-introduced PreSptModLoad for now --------- Co-authored-by: Alex <clodanSPT@hotmail.com>
10 lines
283 B
C#
10 lines
283 B
C#
namespace SPTarkov.Server.Core.Models.External;
|
|
|
|
/// <summary>
|
|
/// This class now runs the Kestrel server is being configured/built, making it the perfect spot to change server configurations.
|
|
/// </summary>
|
|
public interface IOnWebAppBuildModAsync
|
|
{
|
|
Task OnWebAppBuildAsync();
|
|
}
|