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