(
private group: Group,
private mq: IMessageQueue
)
| 31 | private runtime: RuntimeService | undefined; |
| 32 | |
| 33 | constructor( |
| 34 | private group: Group, |
| 35 | private mq: IMessageQueue |
| 36 | ) { |
| 37 | this.logger = LoggerCore.logger().with({ service: "value" }); |
| 38 | this.valueDAO.enableCache(); |
| 39 | } |
| 40 | |
| 41 | async getScriptValueDetails(script: Script) { |
| 42 | let data: { [key: string]: any } = {}; |
nothing calls this directly
no test coverage detected