unknown commit

This commit is contained in:
Marcel Lorbeer 2023-07-24 18:34:29 +02:00
parent 243937a293
commit 67278b9ba7

View File

@ -4,6 +4,34 @@ type MarcSyncClient = typeof(require(MarcSync.Types.MARCSYNC_CLIENT))
local TestPlugin = {}
TestPlugin.Config = {
Name = "TestPlugin",
Description = "A Test Plugin",
Author = "Marc",
Version = "0.0.1",
Support = {
URL = "https://marcsync.dev",
Email = "test@example.com"
},
Setup = {
MarcSyncVersions = { "0.5.0" },
SetupAPIVersion = "v1",
Variables = {
TestVariable = {
Type = "string",
Required = true,
Default = "Hello World!",
Description = "A Test Variable"
},
TestVariable2 = {
Type = "number",
Required = false,
Description = "A Test Variable"
}
}
}
}
function TestPlugin.init(client: MarcSyncClient)
end