Sheas-Cealer/Utils/NginxProc.cs
2024-12-07 13:06:49 +08:00

12 lines
284 B
C#

using System;
using Sheas_Cealer.Consts;
using SheasCore;
namespace Sheas_Cealer.Utils;
internal class NginxProc : Proc
{
internal NginxProc() : base(MainConst.NginxPath) { }
public override void Process_Exited(object sender, EventArgs e) => GlobalCealCleaner.Clean();
}