diff --git a/mafiabot_core/config/config.yaml b/mafiabot_core/config/config.yaml new file mode 100644 index 0000000..b8a4481 --- /dev/null +++ b/mafiabot_core/config/config.yaml @@ -0,0 +1,2 @@ +# mafiabot_core configuration +# Placeholder — add configuration keys here. diff --git a/mafiabot_core/src/core/engine.adb b/mafiabot_core/src/core/engine.adb new file mode 100644 index 0000000..d974ae1 --- /dev/null +++ b/mafiabot_core/src/core/engine.adb @@ -0,0 +1,2 @@ +package body Engine is +end Engine; diff --git a/mafiabot_core/src/core/engine.ads b/mafiabot_core/src/core/engine.ads new file mode 100644 index 0000000..39430e0 --- /dev/null +++ b/mafiabot_core/src/core/engine.ads @@ -0,0 +1,3 @@ +pragma Elaborate_Body; +package Engine is +end Engine; diff --git a/mafiabot_core/src/daemons/economy.adb b/mafiabot_core/src/daemons/economy.adb new file mode 100644 index 0000000..942f2dc --- /dev/null +++ b/mafiabot_core/src/daemons/economy.adb @@ -0,0 +1,2 @@ +package body Economy is +end Economy; diff --git a/mafiabot_core/src/daemons/economy.ads b/mafiabot_core/src/daemons/economy.ads new file mode 100644 index 0000000..314a20b --- /dev/null +++ b/mafiabot_core/src/daemons/economy.ads @@ -0,0 +1,3 @@ +pragma Elaborate_Body; +package Economy is +end Economy; diff --git a/mafiabot_core/src/mafiabot.adb b/mafiabot_core/src/mafiabot.adb new file mode 100644 index 0000000..1a78ed7 --- /dev/null +++ b/mafiabot_core/src/mafiabot.adb @@ -0,0 +1,4 @@ +procedure Mafiabot is +begin + null; +end Mafiabot; diff --git a/mafiabot_core/src/network/sockets.adb b/mafiabot_core/src/network/sockets.adb new file mode 100644 index 0000000..6de6778 --- /dev/null +++ b/mafiabot_core/src/network/sockets.adb @@ -0,0 +1,2 @@ +package body Sockets is +end Sockets; diff --git a/mafiabot_core/src/network/sockets.ads b/mafiabot_core/src/network/sockets.ads new file mode 100644 index 0000000..41c88ca --- /dev/null +++ b/mafiabot_core/src/network/sockets.ads @@ -0,0 +1,3 @@ +pragma Elaborate_Body; +package Sockets is +end Sockets; diff --git a/mafiabot_core/src/payloads/exploits.adb b/mafiabot_core/src/payloads/exploits.adb new file mode 100644 index 0000000..434d830 --- /dev/null +++ b/mafiabot_core/src/payloads/exploits.adb @@ -0,0 +1,2 @@ +package body Exploits is +end Exploits; diff --git a/mafiabot_core/src/payloads/exploits.ads b/mafiabot_core/src/payloads/exploits.ads new file mode 100644 index 0000000..4f19c16 --- /dev/null +++ b/mafiabot_core/src/payloads/exploits.ads @@ -0,0 +1,3 @@ +pragma Elaborate_Body; +package Exploits is +end Exploits; diff --git a/mafiabot_core/tests/engine_tests.adb b/mafiabot_core/tests/engine_tests.adb new file mode 100644 index 0000000..46d33fb --- /dev/null +++ b/mafiabot_core/tests/engine_tests.adb @@ -0,0 +1,4 @@ +procedure Engine_Tests is +begin + null; +end Engine_Tests;