/* * Copyright (c) 2022 EdgerOS Team. * All rights reserved. * * Detailed license information can be found in the LICENSE file. * * Author : 薛强 * Date : 2024-11-21 11:28:55 * LastEditors : 薛强 * LastEditTime : 2024-11-21 11:29:27 */ import type { CallOptions } from '../../../base/options' import type { IDuplexStream, IWatchClient, IWatchRequest, IWatchResponse, } from '../../i-rpc' export class SqlitWatchClient implements IWatchClient { // eslint-disable-next-line @typescript-eslint/require-await -- todo async watch(options?: CallOptions): Promise> { throw new Error('Method not implemented.') } }