mirror of
https://github.com/raphaeIl/Novaria.git
synced 2025-12-12 14:34:38 +01:00
13 lines
275 B
C#
13 lines
275 B
C#
namespace Novaria.PcapParser
|
|
{
|
|
public class Program
|
|
{
|
|
public static void Main(string[] args)
|
|
{
|
|
PcapParser.Instance.Parse("first_instant_join.json");
|
|
|
|
PcapParser.Instance.SavePackets("parsed_packets.json");
|
|
}
|
|
}
|
|
}
|