mirror of
https://github.com/SHOGGOTH-SECTOR/sica-fondt.git
synced 2026-08-01 16:40:24 +00:00
Scaffold mafiabot_core module stubs
Add assumption-free skeletons for the modules documented in the README: empty Engine/Economy/Sockets/Exploits packages, null-body Mafiabot and Engine_Tests procedures, and a placeholder config/config.yaml.
This commit is contained in:
parent
2b81a9f1cc
commit
d1e4eec578
2
mafiabot_core/config/config.yaml
Normal file
2
mafiabot_core/config/config.yaml
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
# mafiabot_core configuration
|
||||||
|
# Placeholder — add configuration keys here.
|
||||||
2
mafiabot_core/src/core/engine.adb
Normal file
2
mafiabot_core/src/core/engine.adb
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
package body Engine is
|
||||||
|
end Engine;
|
||||||
3
mafiabot_core/src/core/engine.ads
Normal file
3
mafiabot_core/src/core/engine.ads
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
pragma Elaborate_Body;
|
||||||
|
package Engine is
|
||||||
|
end Engine;
|
||||||
2
mafiabot_core/src/daemons/economy.adb
Normal file
2
mafiabot_core/src/daemons/economy.adb
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
package body Economy is
|
||||||
|
end Economy;
|
||||||
3
mafiabot_core/src/daemons/economy.ads
Normal file
3
mafiabot_core/src/daemons/economy.ads
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
pragma Elaborate_Body;
|
||||||
|
package Economy is
|
||||||
|
end Economy;
|
||||||
4
mafiabot_core/src/mafiabot.adb
Normal file
4
mafiabot_core/src/mafiabot.adb
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
procedure Mafiabot is
|
||||||
|
begin
|
||||||
|
null;
|
||||||
|
end Mafiabot;
|
||||||
2
mafiabot_core/src/network/sockets.adb
Normal file
2
mafiabot_core/src/network/sockets.adb
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
package body Sockets is
|
||||||
|
end Sockets;
|
||||||
3
mafiabot_core/src/network/sockets.ads
Normal file
3
mafiabot_core/src/network/sockets.ads
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
pragma Elaborate_Body;
|
||||||
|
package Sockets is
|
||||||
|
end Sockets;
|
||||||
2
mafiabot_core/src/payloads/exploits.adb
Normal file
2
mafiabot_core/src/payloads/exploits.adb
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
package body Exploits is
|
||||||
|
end Exploits;
|
||||||
3
mafiabot_core/src/payloads/exploits.ads
Normal file
3
mafiabot_core/src/payloads/exploits.ads
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
pragma Elaborate_Body;
|
||||||
|
package Exploits is
|
||||||
|
end Exploits;
|
||||||
4
mafiabot_core/tests/engine_tests.adb
Normal file
4
mafiabot_core/tests/engine_tests.adb
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
procedure Engine_Tests is
|
||||||
|
begin
|
||||||
|
null;
|
||||||
|
end Engine_Tests;
|
||||||
Loading…
x
Reference in New Issue
Block a user