Update Penumbra.cs add ReloadController.cs to HTTP API

This commit is contained in:
Sebastian Lawe 2023-02-17 19:36:24 -06:00 committed by Ottermandias
parent 30fba90e9f
commit 0a47ae5b18

View file

@ -302,7 +302,8 @@ public class Penumbra : IDalamudPlugin
.WithCors( prefix )
.WithWebApi( "/api", m => m
.WithController( () => new ModsController( this ) )
.WithController( () => new RedrawController( this ) ) );
.WithController( () => new RedrawController( this ) )
.WithController( () => new ReloadController( this ) ) );
WebServer.StateChanged += ( _, e ) => Log.Information( $"WebServer New State - {e.NewState}" );