fix(core): update
This commit is contained in:
parent
9e6b92f864
commit
d170af1db5
@ -18,6 +18,13 @@ tap.test('should create a valid Handler', async () => {
|
|||||||
public async start() {}
|
public async start() {}
|
||||||
|
|
||||||
public async stop() {}
|
public async stop() {}
|
||||||
|
|
||||||
|
public async checkRequirements(): Promise<sdk.IRequirementResult> {
|
||||||
|
return {
|
||||||
|
allOk: true,
|
||||||
|
reason: ''
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
const myHandlerInstance = new MyHandler();
|
const myHandlerInstance = new MyHandler();
|
||||||
|
@ -1,2 +1,3 @@
|
|||||||
|
export * from './sdk.classes.agenvironment';
|
||||||
export * from './sdk.classes.aghandler';
|
export * from './sdk.classes.aghandler';
|
||||||
export * from './sdk.classes.authinfo';
|
export * from './sdk.classes.authinfo';
|
||||||
|
8
ts/sdk.classes.agenvironment.ts
Normal file
8
ts/sdk.classes.agenvironment.ts
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
import * as plugins from './sdk.plugins';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* AgEnvironment handles the provision of environment variables to handlers
|
||||||
|
*/
|
||||||
|
export class AgEnvironment {
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user