namespace Lunaris2.Helper; public static class Async { public static void Run(Func task) { _ = Task.Run(task); } }