init commit

This commit is contained in:
app-harry
2024-10-26 23:40:47 +08:00
parent 81619da270
commit be2a1b0d42
4296 changed files with 757736 additions and 0 deletions

11
plugins/Plugin.rb Normal file
View File

@@ -0,0 +1,11 @@
class Plugin
attr_reader :data
def initialize(data)
@data = data
end
def execute
end
end