mirror of
https://github.com/raphaeIl/Novaria.git
synced 2025-12-13 15:04:36 +01:00
13 lines
279 B
C#
13 lines
279 B
C#
namespace Novaria.PcapParser
|
|
{
|
|
public class Program
|
|
{
|
|
public static void Main(string[] args)
|
|
{
|
|
PcapParser pcapParser = new PcapParser("first_instant_join.json");
|
|
|
|
pcapParser.SavePackets("parsed_packets.json");
|
|
}
|
|
}
|
|
}
|