9 lines
227 B
TypeScript
9 lines
227 B
TypeScript
import * as plugins from './smartuniverse.plugins';
|
|
|
|
/**
|
|
* a cache for clients
|
|
* keeps track of which messages have already been received
|
|
* good for deduplication in mesh environments
|
|
*/
|
|
export class ClientUniverseCache {}
|