mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2026-02-02 08:09:16 +00:00
9 lines
229 B
C#
9 lines
229 B
C#
using System;
|
|
|
|
namespace DiscordChatExporter.Domain.Utilities
|
|
{
|
|
public static class GeneralExtensions
|
|
{
|
|
public static TOut Pipe<TIn, TOut>(this TIn input, Func<TIn, TOut> transform) => transform(input);
|
|
}
|
|
} |