k-scratch
Version:
K-Scratch allows you to get, edit and immediately send back changes to Azure Functions for fast prototyping. You can also test run your Functions in Azure without having to log in to the portal
12 lines (9 loc) • 355 B
text/typescript
import { glue, glueBase } from "../src/glue/glue";
import * as program from "commander";
import { IBootService, tContracts, ILocalLogService } from "../src/model/contract/ServiceContracts";
class testBase extends glueBase{
public resolve<T>(service:symbol) : T{
return this.glue.container.get<T>(service);
}
}
export {testBase};