mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
10 lines
284 B
TypeScript
10 lines
284 B
TypeScript
import { LensMainExtension } from "@k8slens/extensions";
|
|
import { surveyPreferencesStore } from "./src/survey-preferences-store";
|
|
|
|
export default class SurveyMainExtension extends LensMainExtension {
|
|
|
|
async onActivate() {
|
|
await surveyPreferencesStore.loadExtension(this);
|
|
}
|
|
}
|