PocFolderScanImplement.cs 247 B

12345678910111213
  1. using FNZCM2.Abstractions.Utility;
  2. namespace FNZCM2.ProofOfConcept;
  3. internal static class PocFolderScanImplement
  4. {
  5. public static void RunPoc()
  6. {
  7. var r = FolderScan.Scan("library");
  8. int bp = 0;
  9. //SUCCESS
  10. }
  11. }