mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
14 lines
236 B
C#
14 lines
236 B
C#
using Avalonia;
|
|
using Avalonia.Markup.Xaml;
|
|
|
|
namespace Remotely.Desktop.Unix
|
|
{
|
|
public class App : Application
|
|
{
|
|
public override void Initialize()
|
|
{
|
|
AvaloniaXamlLoader.Load(this);
|
|
}
|
|
}
|
|
}
|