mirror of
https://github.com/SpaceTimee/Sheas-Cealer.git
synced 2025-07-13 21:02:08 +08:00
12 lines
284 B
C#
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();
|
|
} |