mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-17 06:23:03 +03:00
17 lines
240 B
C#
17 lines
240 B
C#
|
|
using System;
|
||
|
|
using Gtk;
|
||
|
|
|
||
|
|
namespace MediaBrowser.Server.Mono
|
||
|
|
{
|
||
|
|
class MainClass
|
||
|
|
{
|
||
|
|
public static void Main (string[] args)
|
||
|
|
{
|
||
|
|
Application.Init ();
|
||
|
|
MainWindow win = new MainWindow ();
|
||
|
|
win.Show ();
|
||
|
|
Application.Run ();
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|