The next generation of the Teknik Services. Written in ASP.NET.
https://www.teknik.io/
Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
26 lignes
551 B
26 lignes
551 B
il y a 5 ans
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.ServiceProcess;
|
||
|
using System.Text;
|
||
|
using System.Threading.Tasks;
|
||
|
|
||
|
namespace TeknikStreaming
|
||
|
{
|
||
|
static class Program
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// The main entry point for the application.
|
||
|
/// </summary>
|
||
|
static void Main()
|
||
|
{
|
||
|
ServiceBase[] ServicesToRun;
|
||
|
ServicesToRun = new ServiceBase[]
|
||
|
{
|
||
|
new Server()
|
||
|
};
|
||
|
ServiceBase.Run(ServicesToRun);
|
||
|
}
|
||
|
}
|
||
|
}
|