We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb47d6a commit 9405ff8Copy full SHA for 9405ff8
examples/src/main/java/io/github/wechaty/example/MainWithPlugin.java
@@ -1,14 +1,14 @@
1
package io.github.wechaty.example;
2
3
import io.github.wechaty.Wechaty;
4
-import io.github.wechaty.plugins.WecahtyPlugins;
+import io.github.wechaty.plugins.WechatyPlugins;
5
6
public class MainWithPlugin {
7
8
public static void main(String[] args) {
9
10
Wechaty bot = Wechaty.instance("your-token")
11
- .use(WecahtyPlugins.ScanPlugin(), WecahtyPlugins.DingDongPlugin(null))
+ .use(WechatyPlugins.ScanPlugin(), WechatyPlugins.DingDongPlugin(null))
12
.start(true);
13
14
}
0 commit comments