Commit 495d17de authored by nanahira's avatar nanahira

fix

parent 03b886a5
......@@ -16,6 +16,7 @@ import {
PluginDef,
OnPrivate,
Reusable,
Provide,
} from 'koishi-thirdeye';
export * from './config';
import AragamiPlugin, { CacheKey } from 'koishi-plugin-cache-aragami';
......@@ -29,6 +30,7 @@ export class SelfOnline {
const base = StarterPlugin(OrderPickerConfig);
@Provide('utility', { immediate: true })
@DefinePlugin()
class Utility extends base {
@Inject(true)
......@@ -44,6 +46,7 @@ class Utility extends base {
}
}
@Provide('panel', { immediate: true })
@DefinePlugin()
class ControlPanel extends base {
@Inject(true)
......@@ -80,7 +83,7 @@ class ControlPanel extends base {
@Reusable()
@UsingService('aragami')
@Isolate('panel', 'receiver', 'utility')
@Isolate('panel', 'utility')
@OnPlatform('onebot')
@DefinePlugin()
export default class OrderPicker extends base {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment