(ctx context.Context, data wshrpc.CommandSetRTInfoData)
| 191 | } |
| 192 | |
| 193 | func (ws *WshServer) SetRTInfoCommand(ctx context.Context, data wshrpc.CommandSetRTInfoData) error { |
| 194 | if data.Delete { |
| 195 | wstore.DeleteRTInfo(data.ORef) |
| 196 | return nil |
| 197 | } |
| 198 | wstore.SetRTInfo(data.ORef, data.Data) |
| 199 | return nil |
| 200 | } |
| 201 | |
| 202 | func (ws *WshServer) ResolveIdsCommand(ctx context.Context, data wshrpc.CommandResolveIdsData) (wshrpc.CommandResolveIdsRtnData, error) { |
| 203 | rtn := wshrpc.CommandResolveIdsRtnData{} |
nothing calls this directly
no test coverage detected