github.com/christoph-karpowicz/db_mediator@v0.0.0-20210207102849-61a28a1071d8/web/src/app/app.tsx (about)

     1  import WSRequestPool from '../ws/request_pool';
     2  
     3  class Application {
     4      public static wsRequestPool: WSRequestPool;
     5  
     6      public static init() {
     7          this.wsRequestPool = new WSRequestPool();
     8      }
     9  
    10  }
    11  
    12  export default Application;