mirror of
https://github.com/SpaceTimee/Sheas-Cealer.git
synced 2025-07-14 05:12:09 +08:00
13 lines
307 B
C#
13 lines
307 B
C#
using System;
|
|
using Sheas_Cealer.Consts;
|
|
using Sheas_Cealer.Utils;
|
|
using Sheas_Core;
|
|
|
|
namespace Sheas_Cealer.Proces;
|
|
|
|
internal class NginxProc : Proc
|
|
{
|
|
internal NginxProc() : base(MainConst.NginxPath) { }
|
|
|
|
public override void Process_Exited(object sender, EventArgs e) => NginxCleaner.Clean();
|
|
} |