mirror of
https://github.com/chylex/Discord-History-Tracker.git
synced 2025-01-18 12:46:01 +01:00
10 lines
203 B
C#
10 lines
203 B
C#
using System.Diagnostics;
|
|
|
|
namespace DHT.Desktop.Common;
|
|
|
|
static class SystemUtils {
|
|
public static void OpenUrl(string url) {
|
|
Process.Start(new ProcessStartInfo(url) { UseShellExecute = true });
|
|
}
|
|
}
|