Initiliazation

This commit is contained in:
2025-12-22 16:23:48 +01:00
parent 7a8b6d451d
commit b29e6179f3
165 changed files with 28070 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
module angel.exfil.browser.gecko.gecko;
// Internal imports
import angel.utils.logging;
// External imports
import std.stdio;
class Gecko {
this() {
}
private {
}
public void entry() {
Logger.log(LogLevel.Debug, "Entered gecko");
}
}

View File

@@ -0,0 +1,2 @@
module angel.exfil.browser.gecko.injection;