Archived
1
0
This commit is contained in:
Anmol Sethi
2020-10-30 03:26:30 -04:00
parent bea185b8b2
commit 82e8a00a0d
4 changed files with 50 additions and 47 deletions

View File

@ -1,6 +1,6 @@
import * as pluginapi from "../../../typings/plugin"
import * as express from "express"
import * as path from "path";
import * as path from "path"
import * as pluginapi from "../../../typings/plugin"
export function init(config: pluginapi.PluginConfig) {
config.logger.debug("test-plugin loaded!")
@ -15,9 +15,11 @@ export function router(): express.Router {
}
export function applications(): pluginapi.Application[] {
return [{
name: "goland",
version: "4.0.0",
iconPath: "icon.svg",
}]
return [
{
name: "goland",
version: "4.0.0",
iconPath: "icon.svg",
},
]
}