Ooui-tws-port/Samples/Program.cs

20 lines
350 B
C#
Raw Normal View History

2017-06-12 22:35:19 +00:00
using System;
using Ooui;
namespace Samples
{
class Program
{
static int Main (string[] args)
{
var server = new Server ();
2017-06-15 06:38:58 +00:00
server.RunAsync ("http://*:8080/");
new ButtonSample ().Publish ();
Console.ReadLine ();
2017-06-12 22:35:19 +00:00
return 0;
}
}
}