mirror of
https://github.com/LamGC/ScalaBot.git
synced 2025-04-29 22:27:31 +00:00
docs(extension): 补充部分缺失的 Javadoc 文档.
This commit is contained in:
parent
bf4adc8437
commit
44b7b5122f
@ -13,6 +13,12 @@ public class BotExtensionCreateOptions {
|
|||||||
private final long botAccountId;
|
private final long botAccountId;
|
||||||
private final ProxyConfig proxy;
|
private final ProxyConfig proxy;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 构造新的 BotExtensionCreateOptions.
|
||||||
|
*
|
||||||
|
* @param botAccountId 创建扩展的 Bot 账户 Id.
|
||||||
|
* @param proxy Bot 所使用的代理配置.
|
||||||
|
*/
|
||||||
public BotExtensionCreateOptions(long botAccountId, ProxyConfig proxy) {
|
public BotExtensionCreateOptions(long botAccountId, ProxyConfig proxy) {
|
||||||
this.botAccountId = botAccountId;
|
this.botAccountId = botAccountId;
|
||||||
this.proxy = proxy;
|
this.proxy = proxy;
|
||||||
|
@ -4,6 +4,9 @@ import org.telegram.telegrambots.abilitybots.api.bot.BaseAbilityBot;
|
|||||||
|
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 一些开发扩展中可以用到的工具类.
|
||||||
|
*/
|
||||||
public final class AbilityBots {
|
public final class AbilityBots {
|
||||||
|
|
||||||
private AbilityBots() {
|
private AbilityBots() {
|
||||||
|
Loading…
Reference in New Issue
Block a user