Implement basic structure for network

This commit is contained in:
2025-01-15 12:44:14 +01:00
parent 319e6cdd77
commit 241615238c
5 changed files with 90 additions and 1 deletions

10
Modules/Network.lua Normal file
View File

@@ -0,0 +1,10 @@
local addonname, shared = ...
---@cast shared HeimdallShared
---@cast addonname string
local ModuleName = "Network"
---@diagnostic disable-next-line: missing-fields
shared.Network = {}
function shared.Network.Init()
print("[Heimdall] Network module loaded")
end