From ccc84a37d9026e99181f19d487c4bc7769d2b95c Mon Sep 17 00:00:00 2001 From: qydysky Date: Mon, 24 Apr 2023 20:06:20 +0800 Subject: [PATCH] Add plugin --- plugin/plugin.go | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 plugin/plugin.go diff --git a/plugin/plugin.go b/plugin/plugin.go new file mode 100644 index 0000000..2b00217 --- /dev/null +++ b/plugin/plugin.go @@ -0,0 +1,15 @@ +package plugin + +import msgq "github.com/qydysky/part/msgq" + +var Plugin msgq.Msgq + +type Danmu struct { + Msg string + Color string + Border bool + Mode int + Auth any + Uid string + Roomid int +} -- 2.39.2