Skip to content
Snippets Groups Projects
fluidConfigService.ts 311 B
Newer Older
  • Learn to ignore specific revisions
  • Hugo NOUTS's avatar
    Hugo NOUTS committed
    import Config from '../../config.json'
    import IFluidConfig from './IFluidConfig'
    
    export default class FluidConfig {
      private readonly _fluidConfig: IFluidConfig[]
    
      constructor() {
        this._fluidConfig = Config.fluidConfig
      }
    
      public getFluidConfig(): IFluidConfig[] {
        return this._fluidConfig
      }
    }