Refactor init command (#1117)

This commit is contained in:
Micah
2025-09-30 14:38:38 -07:00
committed by GitHub
parent 80a381dbb1
commit 6ea95d487c
16 changed files with 99 additions and 154 deletions

View File

@@ -2,4 +2,4 @@ return {
hello = function()
print("Hello world, from {project_name}!")
end,
}
}

View File

@@ -0,0 +1 @@
print("Hello world, from client!")

View File

@@ -0,0 +1 @@
print("Hello world, from server!")

View File

@@ -0,0 +1,3 @@
return function()
print("Hello, world!")
end

View File

@@ -0,0 +1 @@
print("Hello world, from plugin!")