mirror of
https://github.com/mamoe/mirai.git
synced 2025-02-05 10:06:58 +08:00
31 lines
1.5 KiB
Kotlin
31 lines
1.5 KiB
Kotlin
/*
|
|
* Copyright 2019-2020 Mamoe Technologies and contributors.
|
|
*
|
|
* 此源代码的使用受 GNU AFFERO GENERAL PUBLIC LICENSE version 3 许可证的约束, 可以在以下链接找到该许可证.
|
|
* Use of this source code is governed by the GNU AFFERO GENERAL PUBLIC LICENSE version 3 license that can be found through the following link.
|
|
*
|
|
* https://github.com/mamoe/mirai/blob/master/LICENSE
|
|
*/
|
|
|
|
package net.mamoe.mirai.console.extensions
|
|
|
|
import net.mamoe.mirai.console.command.descriptor.ExperimentalCommandDescriptors
|
|
import net.mamoe.mirai.console.command.resolve.BuiltInCommandCallResolver
|
|
import net.mamoe.mirai.console.command.resolve.CommandCallResolver
|
|
import net.mamoe.mirai.console.extension.AbstractInstanceExtensionPoint
|
|
import net.mamoe.mirai.console.extension.InstanceExtension
|
|
|
|
@ExperimentalCommandDescriptors
|
|
public interface CommandCallResolverProvider : InstanceExtension<CommandCallResolver> {
|
|
public companion object ExtensionPoint :
|
|
AbstractInstanceExtensionPoint<CommandCallResolverProvider, CommandCallResolver>(CommandCallResolverProvider::class,
|
|
BuiltInCommandCallResolver.Provider)
|
|
}
|
|
|
|
@ExperimentalCommandDescriptors
|
|
public class CommandCallResolverProviderImpl(override val instance: CommandCallResolver) : CommandCallResolverProvider
|
|
|
|
@ExperimentalCommandDescriptors
|
|
public class CommandCallResolverProviderImplLazy(initializer: () -> CommandCallResolver) : CommandCallResolverProvider {
|
|
override val instance: CommandCallResolver by lazy(initializer)
|
|
} |