UNPKG
@greenpress/plugins
Version:
latest (2.0.21)
2.0.21
2.0.20
2.0.19
2.0.18
2.0.15
2.0.10
2.0.9
2.0.8
2.0.7
2.0.6
2.0.5
2.0.4
2.0.3
2.0.2
2.0.0
manage plugins system
github.com/greenpress/greenpress
greenpress/greenpress
@greenpress/plugins
/
server
/
controllers
/
play-plugins.ts
16 lines
(10 loc)
•
204 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
export
interface
IPluginProxy
{
name
:
string
;
apiPath
:
string
;
token
:
string
;
proxyUrl
:
string
; }
const
plugins
:
IPluginProxy
[] = [];
export
async
function
getPlugins
(
) {
return
plugins; }