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