mirror of
https://github.com/SHOGGOTH-SECTOR/sica-fondt.git
synced 2026-07-31 16:16:26 +00:00
13 lines
266 B
Ada
13 lines
266 B
Ada
pragma Profile (Jorvik);
|
|
pragma SPARK_Mode (Off); -- Main procedure: orchestrates I/O-facing init.
|
|
|
|
with Bot_Config;
|
|
with Engine;
|
|
|
|
procedure Mafiabot is
|
|
Config : Bot_Config.Bot_Configuration;
|
|
Registry : Engine.Daemon_Registry;
|
|
begin
|
|
null;
|
|
end Mafiabot;
|