mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2025-06-18 14:35:37 -04:00
11 lines
242 B
C#
11 lines
242 B
C#
using System;
|
|
|
|
namespace DiscordChatExporter.Gui.Utils;
|
|
|
|
internal class Disposable(Action dispose) : IDisposable
|
|
{
|
|
public static IDisposable Create(Action dispose) => new Disposable(dispose);
|
|
|
|
public void Dispose() => dispose();
|
|
}
|