/** @format */

import { Radio } from './radio';

export class render {
  private radio: Radio;

  constructor() {
    this.radio = new Radio();
  }

  initAll(): void {
    this.radio.init();
  }
}
