Skip to content
Snippets Groups Projects
TrackCommentOptionsToolGroupService.js 301 B
Newer Older
import Service from '../../Service';
import TrackCommentOptions from './TrackCommentOptions';

class TrackCommentOptionsToolGroupService extends Service {
  register() {
    this.container.bind('TrackCommentOptions').to(TrackCommentOptions);
  }
}

export default TrackCommentOptionsToolGroupService;