aswi2021tri-musketyri-gitlab/Server/ServerApp/Program.cs @ abfd9c7c
1 |
using ServerApp.Parser.Parsers; |
---|---|
2 |
using System; |
3 |
|
4 |
namespace ServerApp |
5 |
{
|
6 |
class Program |
7 |
{
|
8 |
static void Main(string[] args) |
9 |
{
|
10 |
DataParser p = new DataParser(); |
11 |
|
12 |
p.Parse(); |
13 |
|
14 |
Console.ReadLine(); |
15 |
}
|
16 |
}
|
17 |
}
|